---
layout: default
---
{% assign sorted_articles = site.articles | sort: 'order' %}
{{page.title}}
{% 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 %}