aboutsummaryrefslogblamecommitdiffstats
path: root/Peli-Kiera/templates/page.html
blob: b5e56cf2faf5c37292ad28e599760016d493a73a (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                              
                                     










                                                                         
{% extends "base.html" %}
{% block html_lang %}{{ page.lang }}{% endblock %}

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

{% block content %}
    <main>
        <section>
            <h1>{{ page.title }}</h1>
            {% 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 %}