{% extends "base.html" %} {% block metatag_description %} {% endblock %} {% block metatag_robots %} {% if METATAG_ROBOTS_TAG %} {% endif %} {% endblock %} {% block og_description %} {% endblock %} {# {% block canonical_rel %} {% if TAGS_URL %} {% endif %} {% endblock %} #} {% block title %}Tags - {{ SITENAME }}{% endblock %} {% block breadcrumbs %} {% if DISPLAY_BREADCRUMBS %} {% endif %} {% endblock %} {% block content %}

{{ _('Tags for') }} {{ SITENAME }}

{%- for tag, articles in tags|sort %}
{% for article in articles %}
{{ article.title }}
{% endfor %}
{% endfor %}
{% endblock %}