{% extends 'theme/base.html' %} {% block page_title %}Archives{% endblock %} {% block nav_secondary %} {# No secondary nav. #} {% endblock %} {% block section_main_class %} {{ super() }} archives {% endblock %} {% block header_secondary_h1_class %}twelve columns{% endblock %} {% block header_secondary_title %} {{ self.page_title() }} {% endblock %} {% block section_main_content %} {% for year, posts in post_list|groupby('timestamp.year')|sort(reverse=True, attribute='grouper') %}

{{ year }}

{% for post in posts %} {% endfor %}
{% endfor %} {% endblock %} {% block section_sidebar_content %}
{% endblock %}