{% extends 'layout.html' %} {% set title = 'Blog › Archives › ' ~ archive.year %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% 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 %}