{% load static i18n %}
{% block main %} {% endblock main %}
{% trans "Categories" %}
{% for categ in page.get_categories %}
{{ categ.name }}
{% endfor %}
{% trans "Archive" %}
{% regroup archives by date|date:"Y" as year_list %} {% for year in year_list %}
{{ year.grouper }}
{% regroup year.list by date|date:"M" as month_list %} {% for month in month_list reversed %}
{{ month.grouper }}
{% endfor %}
{% endfor %}