{% load wagtailcore_tags %} {% for post in posts %}
{% if year and forloop.counter == 1 %}

{{ year }}

{% endif %} {% if post.published %} Published {{ post.published }} {% if post.updated %}
Updated {{ post.updated }}
{% endif %} {% endif %} {% if post.latest_draft %} Last draft {{ post.latest_draft }} {% endif %} {% if post.page_type %}
{{ post.page_type.indefinite_article|capfirst }} {% if post.tags %}, tagged:{% endif %}
{% endif %}

{% if post.published %}{% endif %}{{ post.title }}{% if post.published %}{% endif %}

{% if post.summary %}{{ post.summary|richtext }}{% endif %}
{% endfor %}