{% for post in posts %}

{{ post.title }}

{{ post.published_at }} {% for tag in post.tags %} {{ tag }} {% if not forloop.last %}, {% endif %} {% endfor %}

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