{% extends 'theme/layouts/no_sidebar.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 %}

{{ self.page_title() }}

{% for year, year_posts in post_list|groupby('timestamp.year')|sort(reverse=True, attribute='grouper') %}

{{ year }}

{% for month, posts in year_posts|groupby('timestamp.month')|sort(reverse=True, attribute='grouper') %}

{{ posts[0].timestamp|date('%B') }}

{% for post in posts|sort(reverse=True, attribute='timestamp') %} {% endfor %}
{% endfor %}
{% endfor %}
{% endblock %} {#{% block section_sidebar_content %}#} {#
#} {# #} {#
#} {#{% endblock %}#}