aboutsummaryrefslogtreecommitdiffstats
path: root/Peli-Kiera/templates/page.html
blob: 65ee9584731ea59ff11bc1261d4f4cf16cbbc1a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}
{% block html_lang %}{{ page.lang }}{% endblock %}

{% block title %}{{ SITENAME }} - {{ page.title }}{%endblock%}

{% block content %}
    <main>
        <section>
            <h2>{{ page.title }}</h2>
            {% import 'translations.html' as translations with context %}
            {{ translations.translations_for(page) }}
            {{ page.content }}
            {% if page.modified %}
                <p>
                Last updated: {{ page.locale_modified }}
                </p>
            {% endif %}
        </section>
     </main>
{% endblock %}