blob: bcbcf5e6689dff98b97feae6e568ac0884aae8e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.html" %}
{% block title %}{{ page.title }}{%endblock%}
{% block pagetitle %}{{ page.title }}{% endblock %}
{% block content %}
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{{ page.content }}
{% if page.modified %}
<div class="right_stuff">
Last updated: {{ page.locale_modified }}
</div>
{% endif %}
{% endblock %}
|