mirror of
https://github.com/bitwarden/help
synced 2025-12-06 00:03:30 +00:00
hidden articles
This commit is contained in:
@@ -4,5 +4,6 @@ title: Configuring directory sync with Azure Active Directory
|
||||
categories: [Organizations]
|
||||
featured: true
|
||||
popular: false
|
||||
hidden: true
|
||||
tags: []
|
||||
---
|
||||
|
||||
@@ -4,6 +4,7 @@ title: Syncing users and groups with a directory
|
||||
categories: [Organizations]
|
||||
featured: true
|
||||
popular: false
|
||||
hidden: true
|
||||
tags: []
|
||||
---
|
||||
|
||||
|
||||
@@ -4,5 +4,6 @@ title: Configuring directory sync with Google GSuite
|
||||
categories: [Organizations]
|
||||
featured: true
|
||||
popular: false
|
||||
hidden: true
|
||||
tags: []
|
||||
---
|
||||
|
||||
@@ -4,5 +4,6 @@ title: Configuring directory sync with Active Directory or other LDAP
|
||||
categories: [Organizations]
|
||||
featured: true
|
||||
popular: false
|
||||
hidden: true
|
||||
tags: []
|
||||
---
|
||||
|
||||
@@ -12,7 +12,7 @@ layout: default
|
||||
<div class="col-md-8 articles">
|
||||
<ol>
|
||||
{% for article in sorted_articles %}
|
||||
{% if article.categories contains page.title %}
|
||||
{% if article.categories contains page.title and article.hidden != true %}
|
||||
<li><a href="{{article.url}}">{{article.title}}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
@@ -14,7 +14,7 @@ title: Help Center
|
||||
<div class="panel-body">
|
||||
<ul class="fa-ul">
|
||||
{% for article in sorted_articles %}
|
||||
{% if article.popular == true %}
|
||||
{% if article.popular == true and article.hidden != true %}
|
||||
<li>
|
||||
<i class="fa-li fa fa-file-text-o"></i>
|
||||
<a href="{{article.url}}">{{article.title}}</a>
|
||||
@@ -32,7 +32,7 @@ title: Help Center
|
||||
<div class="panel-body">
|
||||
<ul class="fa-ul">
|
||||
{% for article in sorted_articles %}
|
||||
{% if article.categories contains category.title %}
|
||||
{% if article.categories contains category.title and article.hidden != true %}
|
||||
<li>
|
||||
<i class="fa-li fa fa-file-text-o"></i>
|
||||
<a href="{{article.url}}">{{article.title}}</a>
|
||||
|
||||
Reference in New Issue
Block a user