{% extends "base.html" %} {% block title %}{{ section.title }}{% endblock %} {% block content %}

{{ section.title }}

{% for year, pages in section.pages | group_by(attribute="year") %}
{{ year }}
{% for page in pages %}
{{ page.title | markdown(inline=true) | safe }}{% if page.description %}, {{ page.description }}{% endif %} ({% if page.date %}{{ page.date | date(format="%B %Y") }}{% else %}???{% endif %}{% if page.updated %}{% if page.extra.when == "now" %}, last update {% else %} to{% endif %} {{ page.updated | date(format="%B %Y") }}{% endif %})
{% endfor %}
{% endfor %} {% endblock %}