{% extends 'layout.html' %} {% set crumbs = (('News', 'news/'), ('Archives', 'news/archives/'), (archive.year,)) %} {% block content %}
{% for month in archive.months|values %} {% for post in month %}
{{ 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 %}