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