{% 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 %}
{% 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 %}
{{ page.content | safe }}
{% endblock %}