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

Archives for {{ SITENAME }}

{% endblock %}
{% block archives_quicklinks %} {# Top Row with links to Archives by Year #}
 
 
{% endblock %} {# Main Archive Listing #} {# "dates" is the article list, sorted by date #} {% 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 ((loop.index0 != 0) and (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 -%}
{% if not article.micro %} {{ article.title }} {% if article.subtitle %}
{{ article.subtitle }}{% endif %} {% else %} {{ article.content }} {# •  #} {% endif %}
{% endfor %}
{% endblock %}