{% for category, articles in categories.items() %}

{{ category }} ({{ articles|length }} articles)

{% for article in articles %}

{{ article.title }}

{{ article.summary }}
{% endfor %}
{% endfor %}