{% extends 'layout.html' %} {% set title = 'Tag › ' ~ tag.name %} {% block content %}

Tag › {{ tag.name }}

{% for year, archive in tag.archives %}
{{ 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 %}
{% endfor %} {% endblock %}