{% 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 }} {% endfor %}

{% endfor %} {% endblock %}