{% extends 'layout.html' %} {% set title = 'Archives › ' ~ archive.year %} {% block content %}

Archives › {{ archive.year }}

{% for month, posts in archive.months %} {% for post in posts %}
{{ post.timestamp|date('%b %d') }}
{{ post.title }}{% if post.tags %}Tagged » {% for tag in post.tags %}{{ tag }}{% if not loop.last %}, {% endif %}{% endfor %}{% endif %}
{% endfor %} {% endfor %}
{% endblock %}