phantasmobile/app/templates/page.html

11 lines
206 B
HTML
Raw Normal View History

2023-07-25 19:06:14 +00:00
{% extends "base.html" %}
{% block head %}
<title>{{ page.title }} - {{ settings.SITENAME }}</title>
{% endblock %}
{% block content %}
<div class="page">
{{ page.content|safe }}
</div>
{% endblock %}