phantasmobile/app/templates/page.html
2023-07-25 20:06:14 +01:00

10 lines
206 B
HTML

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