{% extends "base.html" %} {% block title -%} Archives — {{ super() }} {%- endblock %} {% block breadcrumbs %} {% if DISPLAY_BREADCRUMBS %} {% endif %} {% endblock %} {% block content %}

Archives for {{ SITENAME }}

{# Top Row with links to Archives by Year #}
 
 
{# Main Archive Listing #} {% for article in dates %}
{% if (loop.index0 == 0) or (article.date.year != dates[loop.index0 - 1].date.year) %} {% if loop.index0 != 0 -%}
 
 
{%- endif %}
{{- article.date.year -}}
 
{% endif %} {% if (loop.index0 == 0) or (article.date.year != dates[loop.index0 - 1].date.year) or ((article.date.year == dates[loop.index0 - 1].date.year) and (article.date.month != dates[loop.index0 - 1].date.month)) %} {% if ((article.date.year == dates[loop.index0 - 1].date.year) and (article.date.month != dates[loop.index0 - 1].date.month)) -%}
 
{%- endif %}
{{- article.date|strftime('%B') -}}
 
{% endif %}
{%- if ((article.date.day == dates[loop.index0 - 1].date.day) and (article.date.month == dates[loop.index0 - 1].date.month) and (article.date.year == dates[loop.index0 - 1].date.year)) %} — {% else -%} {%- endif -%}
{{ article.title }} {% if article.subtitle %}
{{ article.subtitle }}{% endif %}
{% endfor %}
{% endblock %}