{% extends "section.html" %} {% block body %} {% set page_class = "blog list" %} {% endblock body %} {% block header %} {# This value is matched by the config.extra.menu.main->section #} {% set current_section = "blog" %} {{ macros_header::header(current_section=current_section)}} {% endblock header %} {% block content %}

{{ section.title }}

{% for page in paginator.pages %}

{{ page.title }}

{% if page.extra.lead %}

{{ page.extra.lead | safe }}

{% elif page.description %}

{{ page.description | safe }}

{% elif page.summary %}

{{ page.summary | safe }}

{% endif %} {{ macros_publish::page_publish_metadata(page=page) }}
{% endfor %} {% if paginator.previous or paginator.next %} {{ macros_section_nav::navigation(paginator=paginator) }} {% endif %}
{% endblock content %}