contentdb/app/templates/flatpage.html

12 lines
208 B
HTML
Raw Normal View History

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