aboutsummaryrefslogtreecommitdiffstats
path: root/syte/templates/page.html
blob: d5ae0e0183eaf458c0b25c0bd1e11adb953a18b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% 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 %}