blob: d5ae0e0183eaf458c0b25c0bd1e11adb953a18b8 (
plain) (
tree)
|
|
{% import 'translations.html' as translations with context %}
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block main_section %}
<section class="main-section">
<h1 class="entry-title">{{ page.title }}</h1>
{{ translations.translate(page, 'pages') }}
<br /><br />
{{ page.content }}
</section>
{% endblock %}
|