{% extends "base.html" %} {% block metatag_description %} {% endblock %} {% block metatag_robots %} {% if METATAG_ROBOTS_CATGORIES_PAGE %} {% endif %} {% endblock %} {% block og_description %} {% endblock %} {# {% block canonical_rel %} {% if CATEGORIES_URL %} {% endif %} {% endblock %} #} {% block title %}{{ _('Categories') }} - {{ SITENAME }}{% endblock %} {% block breadcrumbs %} {% if DISPLAY_BREADCRUMBS %} {% endif %} {% endblock %} {% block content %}

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

{# use of category.slug in below, id, href, aria-contorls Assuming categories do not have spaces! If there are spaces, the generated HTML would have problem Make use of replace(" ", "-") for this problem #}
{% for category, articles in categories %}
{% for article in articles %}
{{ article.title }}
{% endfor %}
{% endfor %}
{% endblock %}