{% extends "base.html" %} {% 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 %}