{% extends "base.html" %} {% block title %}{{ SITENAME }} - {{ page.title|striptags }}{%endblock%} {% block head %} {{ super() }} {% if page.authors %} {% for author in page.authors %} {% endfor %} {% endif %} {% if page.summary %} {% else %} {% endif %} {% if page.canonical %} {% endif %} {% endblock head %} {% block content %}

{{ page.title }}

{% import 'translations.html' as translations with context %} {{ translations.translations_for(page) }}
{% block data %} {{ page.content }} {% endblock data %}
{% if page.modified and PAGES_DEBUG == true %}

Created: {{ page.locale_date }}, Last updated: {{ page.locale_modified }}

{% endif %} {% if PAGES_DEBUG == true %}

Debug stuff. Ignore

url: {{ page.url }}
slug: {{ page.slug }}
{% if page.parent %} page parent: {{ page.parent }}
page parent url: {{ page.parent.url }}
page parent title: {{ page.parent.title }} {% endif %}

page parents

page children

{% endif %} {% endblock content %}