aboutsummaryrefslogtreecommitdiff
path: root/templates/page.html
blob: bd8fd581d774786af2cc1e91b95f7767b6fac51c (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>{{ page.title }}</h1>

    <div class="content">
      {{ page.content | safe }}
    </div>
  </article>
</div>
{% endblock %}