{% 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 %}