{% extends 'base.html' %} {% block template_content_head %} {% endblock %} {% block content %}
{% 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 %} {% block template_content_footer %}
{% endblock %}