{% extends "base.html" %} {% block title %}Archives - {{ SITENAME }}{% endblock %} {% block breadcrumbs %} {% if DISPLAY_BREADCRUMBS %} {% endif %} {% endblock %} {% block content %}

Archives for {{ SITENAME }}

{# Top Row with links to Archives by Year #}
 
 
{# Main Archive Listing #} {%- set last_year = None -%} {%- set last_month = None -%} {%- set last_day = None -%} {% for article in dates %}
{% if article.date.year != last_year %} {% if last_year != None -%}
 
 
{%- endif %}
{{- article.date.year -}}
 
{%- set last_year = article.date.year -%} {%- set last_month = None -%} {%- set last_day = None -%} {% endif %} {% if article.date.month != last_month %} {% if last_month != None -%}
 
{%- endif %}
{{- article.date|strftime('%B') -}}
 
{%- set last_month = article.date.month -%} {%- set last_day = None -%} {% endif %}
{%- if last_day != article.date.day %} {% else -%}   {%- endif -%}
{{ article.title }} {% if article.subtitle %}
{{ article.subtitle }}{% endif %}
{%- set last_day = article.date.day %}
{% endfor %}
{% endblock %}