b0b8f30580
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/
9 lines
186 B
HTML
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 %}
|