contentdb/app/templates/flatpage.html

12 lines
208 B
HTML
Raw Normal View History

2018-05-14 14:46:41 +01:00
{% extends "base.html" %}
{% block title %}
{{ page['title'] }}
{% endblock %}
{% block content %}
2018-09-03 01:39:20 +01:00
{% if not page["no_h1"] %}<h1>{{ page['title'] }}</h1>{% endif %}
2018-05-14 14:46:41 +01:00
{{ page.html | safe }}
{% endblock %}