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