{% extends 'base.html' %} {% block title %}Archive for {{ period | reverse | join(' ') }} | {{ SITENAME }}{% endblock %} {% block meta %}{% endblock %} {% block content %}

Archive for {{ period | reverse | join(' ') }}

{% for year, _ in dates | groupby('date.year') %} {% for month, articles in dates | groupby('date.month') %} {% if not period[1] %}

{{ articles[0].date.strftime('%B') }}

{% endif %} {% endfor %} {% endfor %}
« Back to Home
{% endblock %}