{% block head %}
{% block title %}{{ config.extra.title }}{% endblock title %}
{% endblock head %} {% block header %}
{{ config.extra.title }}
{% endblock header %}
{% block content %}
{{ config.extra.intro }}
Archive
{%- for year, posts in section.pages | group_by(attribute="year") %}
{{ year }}
{%- for post in posts %}
{{ post.title }}
{{ post.date | date(format="%B %e, %Y") }}
{%- endfor %} {% endfor %}
{% endblock content %}
{% block footer %} {% endblock footer %}