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

Categories on {{ SITENAME }}:

{% for category, articles in categories|sort %}
{{ category }} ({{ articles|count }})
{% endfor %}
{% endblock %}