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