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

25 lines
601 B
HTML
Raw Normal View History

2017-07-06 14:28:42 +02:00
{% extends "base.html" %}
{% block title %}{{ page.title }}{%endblock%}
{% block content %}
2018-02-27 08:26:28 +01:00
<section id="content" class="index">
<header id="banner">
{% for p in pages %}
{% if p.title == 'header' %}
<div id="title">{{ p.content }}</div>
{% endif %}
{% endfor %}
</header>
</section>
<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 %}