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

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

{% for year, date_year in dates|groupby('date.year')|sort(reverse=True) %}

{{ year }}

{% for article in date_year %} {% endfor %}
{{ article.title }}{% if article.subtitle %} - {{ article.subtitle }}{% endif %}

{% endfor %}
{% endblock %}