{% for category in site.categories %}
{% if category.featured == true %}
{{category.title}}
{% for article in site.articles %}
{% if article.categories contains category.title and article.featured == true %}
- {{article.title}}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}