mdk.fr/theme/templates/page.html
2017-04-04 23:11:23 +02:00

16 lines
472 B
HTML

{% extends "base.html" %}
{% block header %}
{% if page.robots is defined %}
<meta name="robots" content="{{page.robots}}" />
{% endif %}
{% endblock %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}
<section id="content" class="body">
<h1 class="entry-title">{{ page.title }}</h1>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{{ page.content }}
</section>
{% endblock %}