{% extends "base.html" %} {% block content %}
{% for year, date_year in dates|groupby( 'date.year' )|sort(reverse=True) %}

{{ year }}

{% for month, articles in date_year|groupby('date.month') %} {% for article in articles %}
{{ article.date.strftime('%b %d') }}
{% endfor %} {% endfor %} {% endfor %}
{% endblock %} {% set pagetitle = 'Archives' %}