--- 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 %}
    {% for article in sorted_articles %} {% if article.categories contains category.title and article.hidden != true %}
  • {{article.title}}
  • {% endif %} {% endfor %}
{% endfor %}
{% include contact.html %}

Categories