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

{{ page.title }}

Description: {{ page.description }}
Created: {{ page.date }}
{% if page.updated %}
Updated: {{ page.updated }}
{% endif %} {% for kind, values in page.taxonomies %}
{% set cat = get_taxonomy(kind=kind) -%} {{ kind }}: {% for v in values %} {% if loop.index != 1%}, {% endif %}{{ v }} {% endfor %}
{% endfor %} {% endfor %}
{% endblock %}