{% 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 %}
Created: {{ page.date }}
{% if page.updated %}Updated: {{ page.updated }}
{% endif %}
Description: {{ page.description }}
{{ page.content | safe }}
{% endblock %}