2010-10-30 20:17:23 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block title %}{{ page.title }}{% endblock %}
|
2013-08-03 16:17:26 -07:00
|
|
|
{% block content %}
|
|
|
|
|
<section id="content" class="body">
|
2010-10-31 15:00:45 +00:00
|
|
|
<h1 class="entry-title">{{ page.title }}</h1>
|
2012-11-21 14:41:09 +02:00
|
|
|
{% import 'translations.html' as translations with context %}
|
|
|
|
|
{{ translations.translations_for(page) }}
|
2010-10-30 20:17:23 +01:00
|
|
|
{{ page.content }}
|
|
|
|
|
</section>
|
|
|
|
|
{% endblock %}
|