Files
pelican-themes/syte/templates/page.html
2012-10-20 02:52:02 +02:00

12 lines
356 B
HTML

{% 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 %}