{% extends "index.html" %} {% block title %} {{ section.title }} | {{ section.description }} {% endblock %} {% block header %}
{{ macros::render_header() }}
{% endblock header %} {% block content %}
{{ section.title }}
{{ section.description }}
{{ section.content | safe }}
{% if paginator %} {% set pages = paginator.pages %} {% else %} {% set pages = section.pages %} {% endif %} {% for page in pages %}

{{ page.title }}

{{ page.summary | safe }}
{% endfor %}
{% endblock content %}