See More

{% extends "base.html" %} {% block title %} Archive | {{ SITENAME }} {% endblock %} {% block content %} {% block heading %}

Archive

{% endblock %}
{% for year, by_year in dates|groupby('date.year')|sort(True, '0') %} {% if loop.length > 1 %}

{{ year }}

{% endif %} {% for month, by_month in by_year|groupby('date.month')|sort(True, '0') %} {% if loop.length > 1 %}

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

{% endif %} {% for article in by_month %}
{{ article.date.strftime('%b %d, %Y') }}

{{ article.title }}

{{ article.excerpt }}

{% endfor %} {% endfor %} {% endfor %}
{% endblock %}