From e6a449945157be25454d0949855139235b1ed5e8 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 23 May 2017 22:18:58 -0400 Subject: [PATCH] hidden articles --- _articles/organizations/azure-active-directory.md | 1 + _articles/organizations/directory-sync.md | 1 + _articles/organizations/gsuite-directory.md | 1 + _articles/organizations/ldap-directory.md | 1 + _layouts/category.html | 2 +- index.html | 4 ++-- 6 files changed, 7 insertions(+), 3 deletions(-) diff --git a/_articles/organizations/azure-active-directory.md b/_articles/organizations/azure-active-directory.md index a31d381e..6a38e7ba 100644 --- a/_articles/organizations/azure-active-directory.md +++ b/_articles/organizations/azure-active-directory.md @@ -4,5 +4,6 @@ title: Configuring directory sync with Azure Active Directory categories: [Organizations] featured: true popular: false +hidden: true tags: [] --- diff --git a/_articles/organizations/directory-sync.md b/_articles/organizations/directory-sync.md index 8d8a348d..3833fd51 100644 --- a/_articles/organizations/directory-sync.md +++ b/_articles/organizations/directory-sync.md @@ -4,6 +4,7 @@ title: Syncing users and groups with a directory categories: [Organizations] featured: true popular: false +hidden: true tags: [] --- diff --git a/_articles/organizations/gsuite-directory.md b/_articles/organizations/gsuite-directory.md index 355b1f5e..2964a921 100644 --- a/_articles/organizations/gsuite-directory.md +++ b/_articles/organizations/gsuite-directory.md @@ -4,5 +4,6 @@ title: Configuring directory sync with Google GSuite categories: [Organizations] featured: true popular: false +hidden: true tags: [] --- diff --git a/_articles/organizations/ldap-directory.md b/_articles/organizations/ldap-directory.md index 6fe5d9f0..a82ba675 100644 --- a/_articles/organizations/ldap-directory.md +++ b/_articles/organizations/ldap-directory.md @@ -4,5 +4,6 @@ title: Configuring directory sync with Active Directory or other LDAP categories: [Organizations] featured: true popular: false +hidden: true tags: [] --- diff --git a/_layouts/category.html b/_layouts/category.html index c955ef07..6270f300 100644 --- a/_layouts/category.html +++ b/_layouts/category.html @@ -12,7 +12,7 @@ layout: default
    {% for article in sorted_articles %} - {% if article.categories contains page.title %} + {% if article.categories contains page.title and article.hidden != true %}
  1. {{article.title}}
  2. {% endif %} {% endfor %} diff --git a/index.html b/index.html index c6291317..d2df57d6 100644 --- a/index.html +++ b/index.html @@ -14,7 +14,7 @@ title: Help Center
      {% for article in sorted_articles %} - {% if article.popular == true %} + {% if article.popular == true and article.hidden != true %}
    • {{article.title}} @@ -32,7 +32,7 @@ title: Help Center
        {% for article in sorted_articles %} - {% if article.categories contains category.title %} + {% if article.categories contains category.title and article.hidden != true %}
      • {{article.title}}