khaganat-web/pages/templates/pages/page.html
Rodolphe Breard b0b8f30580 Migrate to Bulma
Bulma is simple and free full-CSS framework. Unlike Bootstrap, it fits
within a single small CSS file. It is also well integrated in Django.
https://bulma.io/
2018-06-03 22:16:40 +02:00

9 lines
186 B
HTML

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