{% 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 %}
{% if page.extra.featured %}⭐️{% endif %} {{ page.title | markdown(inline=true) | safe }}{% if page.date %}, {{ page.date | date(format="%B %-d, %Y") }}{% endif %}
{% endfor %}
{% endfor %} {% endblock %}