{% extends "base.html" %}
{% block content %}
{% block header_nav %}{% endblock %}
Archives for {% block archives_period %}{{ SITENAME }}{% endblock %}
{% for year, year_group in dates|groupby('date.year') %}
{{ year }} ({{ year_group|length }})
{% for month, month_group in year_group|groupby('date.month') %}
{% endfor %}
{% endfor %}
{% endblock %}