manymanymany-varia-websites/themes/cetcat/templates/page.html

16 lines
386 B
HTML
Raw Normal View History

2017-07-06 14:28:42 +02:00
{% extends "base.html" %}
{% block title %}{{ page.title }}{%endblock%}
{% block content %}
<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 %}