{% extends "base.html" %}
{% block header %}
{% include "single_post_header.html" %}
{% endblock %}
{% block content %}
{% for post in posts %}
{{ post.date }}
{% if post.tags %}
on {{ post.tags | join(',') }}
{% endif %}
{% if post.summary %}
{{ post.summary }} ...
{% else %}
{{ post.content }}
{% endif %}
{% endfor %}
{% endblock %}
{% block footer %}
{% include "footer.html" %}
{% endblock %}