{% extends "templates/one-column.html" %} {% block title %}Archives{% endblock %} {% block content %}

{% if group %} {{group.name}} archives {% else %} Archives {% endif %}

{{ total_posts }} posts {% if request.args.month or request.args.year %} from{% endif %} {% if request.args.month %} {{ month_name(request.args.month) }}{% endif %} {% if request.args.year %} {{ request.args.year }}{% endif %}

{% for article in articles %}

{{ article.title.rendered|safe }}

By {{ article.author.name }}, {{ article.date }}

{{ article.excerpt.raw.replace("[…]", "")|truncate(162) }}

{% endfor %}

Archives

    {% for year in descending_years(2006) %}
  • {{year}}
  • {% endfor %}
{% with %} {% set total_pages = total_pages %} {% set current_page = current_page %} {% include "shared/_pagination.html" %} {% endwith %}
{% endblock %}