blob: 3a0dc4a9a49f8ffbfe520c59cf461d20a07bd9ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{% extends "base.html" %}
{% block title %}{{ page.title }}{%endblock%}
{% block content %}
<h1>{{ page.title }}</h1>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{{ page.content }}
{% endblock %}
|