{% extends "base.html" %}
{% block styles %}
{% endblock styles %}
{% block content %}
Projects
{% set section = get_section(path=page.ancestors | last) %}
{% for project in section.pages %}
{{project.title}}
{% endfor %}
{{ page.content | safe }}
{% endblock content %}