{% extends "base.html" %} {% block title %}{{ _('Categories') }} - {{ SITENAME }}{% endblock %} {% block breadcrumbs %} {% if DISPLAY_BREADCRUMBS %} {% endif %} {% endblock %} {% block content %}

{{ _('All Categories for') }} {{ SITENAME }}

{% for category, articles in categories %}
{% for article in articles %}

{{ article.title }}

{% endfor %}
{% endfor %}
{% endblock %}