contentdb/app/templates/flatpage.html

12 lines
171 B
HTML

{% extends "base.html" %}
{% block title %}
{{ page['title'] }}
{% endblock %}
{% block content %}
<h1>{{ page['title'] }}</h1>
{{ page.html | safe }}
{% endblock %}