diff options
Diffstat (limited to 'app/templates/flatpage.html')
| -rw-r--r-- | app/templates/flatpage.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/templates/flatpage.html b/app/templates/flatpage.html new file mode 100644 index 0000000..167345d --- /dev/null +++ b/app/templates/flatpage.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} + +{% block title %} +{{ page['title'] }} +{% endblock %} + +{% block content %} + <h1>{{ page['title'] }}</h1> + + {{ page.html | safe }} +{% endblock %} |
