{% extends "base.html" %} {% block title %}{{ SITENAME }} - Categories{% endblock %} {% block content %} {% block content_title %} {% endblock %} {% for category, articles in categories | sort %} {{ category }} {% for article in articles %} {{ article.title }} {{ article.summary }} {% endfor %} {% endfor %} {% endblock %}