2017-07-06 14:28:42 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ page.title }}{%endblock%}
|
|
|
|
{% block content %}
|
2017-11-24 18:34:04 +01:00
|
|
|
<div id ="page-content">
|
2017-09-14 23:40:20 +02:00
|
|
|
{{ page.content }}
|
2017-07-06 14:28:42 +02:00
|
|
|
|
|
|
|
{% if page.modified %}
|
|
|
|
<p>
|
|
|
|
Last updated: {{ page.locale_modified }}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
2017-09-14 23:40:20 +02:00
|
|
|
<!-- {% import 'translations.html' as translations with context %} -->
|
|
|
|
<!-- {{ translations.translations_for(page) }} -->
|
2017-07-06 14:28:42 +02:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|