{% extends "base.html" %} {% block title %}{{ section.title }} | {{ config.title }}{% endblock %} {% block content %}

{{ section.title }}

{% if section.description %}

{{ section.description }}

{% endif %}
{% if section.content %} {{ section.content | safe }} {% endif %}
{% for page in section.pages %} {% if page.extra.image %}
{{ page.title }}
{% endif %}

{{ page.title }}

{% if page.description %}

{{ page.description }}

{% endif %}
{% if page.date %} {{ page.date | date(format="%B %e, %Y") }} {% endif %}
{% endfor %} {% for subsection in section.subsections %} {% set subsection_data = get_section(path=subsection) %}

{{ subsection_data.title }}

{% if subsection_data.description %}

{{ subsection_data.description }}

{% endif %}
{{ subsection_data.pages | length }} pages
{% endfor %}
{% endblock %}