1
0
mirror of https://github.com/bitwarden/help synced 2025-12-06 00:03:30 +00:00

hidden articles

This commit is contained in:
Kyle Spearrin
2017-05-23 22:18:58 -04:00
parent ca2a075928
commit e6a4499451
6 changed files with 7 additions and 3 deletions

View File

@@ -4,5 +4,6 @@ title: Configuring directory sync with Azure Active Directory
categories: [Organizations]
featured: true
popular: false
hidden: true
tags: []
---

View File

@@ -4,6 +4,7 @@ title: Syncing users and groups with a directory
categories: [Organizations]
featured: true
popular: false
hidden: true
tags: []
---

View File

@@ -4,5 +4,6 @@ title: Configuring directory sync with Google GSuite
categories: [Organizations]
featured: true
popular: false
hidden: true
tags: []
---

View File

@@ -4,5 +4,6 @@ title: Configuring directory sync with Active Directory or other LDAP
categories: [Organizations]
featured: true
popular: false
hidden: true
tags: []
---

View File

@@ -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 %}

View File

@@ -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>