blob: 6dec3e5e77e2ccefe60fbe3f43c3a3c92ed155ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends "base.html" %}
{% block content %}
<div class="article page" role="article" lang="{{ page.lang }}">
<article>
<h1 class="topmost">{{ page.title }}</h1>
<div class="content">
{{ page.content | safe }}
</div>
</article>
</div>
{% endblock %}
|