{% extends "base.html" %} {% block title %}{{ page.title }}{% endblock %} {% block header %}{{ page.title }}{% endblock %} {% block navigation %} {% for a in page.ancestors %} {% set s = get_section(path=a) %} {% if loop.index != 1 %} > {% endif %}{{ s.title }} {% endfor %} > {{ page.title }} {% endblock %} {% block content %}
{{ page.content | safe }}
{% endblock %}