{% extends "base.html" %} {% import "macros.html" as macros %} {% block content %} {% for page in section.pages | reverse %} {{ macros::render_article_summary(page=page) }} {% if not loop.last %}
{% endif %} {% endfor %} {% endblock %} {% block footer %} {{ now() | date(format='%Y') }} {% if section.extra.author %} {{ section.extra.author }} {% elif config.extra.author %} {{ config.extra.author }} {% endif %} {% endblock %} {% block aside %} {{ macros::parent_tree(ancestors=section.ancestors) }} {% if section.title %}

{{ section.title }}

{% endif %} {% if section.content %} {{ section.content | safe }} {% endif %} {% if section.subsections %} {{ config.extra.subsections_string | default(value="Subsections:") }} {{ macros::subsection_tree(subs=section.subsections) }} {% endif %} {% if config.extra.xscratch_debug_info %} Debug info: {{ macros::debug(thing=section, label="section", recurse=2) }} {% endif %} {% endblock %}