website/templates/page.html

8 lines
145 B
HTML
Raw Normal View History

2022-03-19 03:04:32 +00:00
{% extends "base.html" %}
{% block content %}
{% if page.title %}
<h1>{{ page.title }}</h1>
{% endif %}
{{ page.content | safe }}
{% endblock %}