{% extends "base.html" %} {% block title %}{{ SITENAME }} - Categories{% endblock %} {% block content_title %}

Overview

{% endblock %} {% block content %} {% for category, articles in categories|sort %}

{{ category }}

{% for article in articles %}

{{ article.title }}

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