diff options
author | Alban Gruin | 2017-11-06 08:21:35 +0100 |
---|---|---|
committer | Alban Gruin | 2017-11-06 08:21:35 +0100 |
commit | 771f4ebb8f1e27212bfce413ea664a73c7a86965 (patch) | |
tree | 2b0525b27ff4706ff8e4eff510b464c3cb86b9e2 /templates/flatpages | |
parent | 959bbaa5170aea4a9600d774280d44fc5107fdae (diff) | |
parent | bafa5f07a4e1b5c2cc2bb234ad2f12929a983025 (diff) |
Merge commit 'bafa5f07a4e1b5c2cc2bb234ad2f12929a983025'
Diffstat (limited to 'templates/flatpages')
-rw-r--r-- | templates/flatpages/about.html | 6 | ||||
-rw-r--r-- | templates/flatpages/default.html | 8 |
2 files changed, 14 insertions, 0 deletions
diff --git a/templates/flatpages/about.html b/templates/flatpages/about.html new file mode 100644 index 0000000..3df7c53 --- /dev/null +++ b/templates/flatpages/about.html @@ -0,0 +1,6 @@ +{% extends "flatpages/default.html" %} + +{% block body %} + <h3>{{ flatpage.title }} – celcatsanitizer {{ celcatsanitizer_version }}</h3> + {{ flatpage.content }} +{% endblock %} diff --git a/templates/flatpages/default.html b/templates/flatpages/default.html new file mode 100644 index 0000000..913cda9 --- /dev/null +++ b/templates/flatpages/default.html @@ -0,0 +1,8 @@ +{% extends "index.html" %} + +{% block title %}{{ flatpage.title }} – {% endblock %} + +{% block body %} + <h3>{{ flatpage.title }}</h3> + {{ flatpage.content }} +{% endblock %} |