---
layout: default
title: Help Center
---
{% assign sorted_articles = site.articles | sort: 'title' %}
Popular Articles
{% for article in sorted_articles %}
{% if article.popular == true and article.hidden != true %}
-
{{article.title}}
{% endif %}
{% endfor %}
{% for category in site.categories %}
{% if category.hidden != true %}
{% for article in sorted_articles %}
{% assign catFilename = category.path | filename %}
{% if article.categories contains catFilename and article.hidden != true %}
-
{{article.title}}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% include contact.html %}
Categories
{% for category in site.categories %}
{% if category.hidden != true %}
-
{{category.title}}
{% endif %}
{% endfor %}