varia.website/themes/cetcat/templates/page.html
2017-09-12 14:56:24 +02:00

17 lines
373 B
HTML

{% extends "base.html" %}
{% block title %}{{ page.title }}{%endblock%}
{% block content %}
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
<div id ="page-content">
{{ page.content }}
{% if page.modified %}
<p>
Last updated: {{ page.locale_modified }}
</p>
{% endif %}
</div>
{% endblock %}