{% extends "base.html" %}
{% block content %}
{% include "_sidebar.html" %}
{{ section.title }}
{{ section.content | safe }}
{% if section.pages %}
Pages
{% for page in section.pages %}
{{ page.title }}
{% if page.description %}{{ page.description }}{% endif %}
{% endfor %}
{% endif %}
{% endblock %}