blob: aa5603901b282a078b0e1b37c57a829c4921745e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends "wiki/base.html" %}
{% block title %}Wiki | {{ data["title"] }}{% endblock %}
{% block og_title %}Wiki | {{ data["title"] }}{% endblock %}
{# To be safe about whitespace formatting on various platforms, we do everything one one line here #}
{% block og_description %}{% if data.rst.startswith(".. header::") %}{{ data.text.split("\n", 1)[0] }}{% endif %}{% endblock %}
{% block page_classes %}uses-rst{% endblock %}
{% block content %}
<div class="uk-container uk-container-small" id="doc-view">
<h2 class="uk-title">
{{ data["title"] }}
</h2>
{{ data["html"] | safe }}
</div>
{% endblock %}
|