{% extends "base.html" %} {% block content %} {% for page in section.pages | reverse %}

{{ page.title }}

{% if page.date %} {{ page.date | date(format="%Y-%m-%d") }} {% endif %} {% if page.summary %}

{{ page.summary | safe }}

{% endif %} {% if not loop.last %}
{% endif %} {% endfor %} {% endblock %} {% block footer %} © {{ now() | date(format='%Y') }} {% if section.extra.author %} {{ section.extra.author }} {% elif config.extra.author %} {{ config.extra.author }} {% endif %} {% endblock %} {% block aside %} {% for k, thing in section %} {{ k }}: {{ thing }}
{% endfor %} {% endblock %}