khaganat-web/pages/templates/pages/page.html
Rodolphe Breard 85eb1ff03e Refactor the page edition
Markdown has been removed, pages are now directly edited in HTML. To
ease that process, TinyMCE has been added. Also, the admin dashboard now
provides a file management tool in order to upload stuff.
2020-02-28 13:53:57 +01:00

10 lines
177 B
HTML

{% extends "khaganat/base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}
<div class="content">
{{ page.content|safe }}
</div>
{% endblock %}