{% extends 'base.html' %}
{% load typogrify_tags %}
{% load html5_datetime %}
{% block pagetitle %}{{block.super}}: Archive{% endblock %}
{% block bodyid %}id="archive"{%endblock%}
{% block primary %}
{% if not month %}{{year|date:"Y"}}, on luxagraf{%else%} Archive: {{month|date:"F Y"}}{% endif %}
{% if not month %}
{% regroup object_list by pub_date.month as entries_by_month %}{% for entries in entries_by_month reversed %}
- {{ entries.list.0.pub_date|date:"F Y" }}
{% endfor %}
{% else %}
{% endif %}
{% endblock%}