{% extends 'layout.html' %} {% set title = 'Blog › Archives' %} {% block breadcrumbs %} {% endblock %} {% block content %} {% for year, archive in archives %}
{{ year }}
{% for month, posts in archive.months %} {% for post in posts %}
{{ post.title }}
{% if post.tags %} {% endif %} {% endfor %} {% endfor %}
{% endfor %} {% endblock %}