summaryrefslogtreecommitdiffstats
path: root/templates/film/page.html
diff options
context:
space:
mode:
authorYour Name <you@example.com>2020-09-25 14:15:30 +0200
committerYour Name <you@example.com>2020-09-25 14:15:30 +0200
commitd42e31f55568c3e33bde160a78aea9e8ea809fee (patch)
treef47345541b64be00ee67f2a355ae3809e5bcfbe3 /templates/film/page.html
parentd534f8ec61b3c66f4a9101cd06806e0532f26a2a (diff)
downloadrabalderz-d42e31f55568c3e33bde160a78aea9e8ea809fee.tar.gz
rabalderz-d42e31f55568c3e33bde160a78aea9e8ea809fee.tar.bz2
rabalderz-d42e31f55568c3e33bde160a78aea9e8ea809fee.zip
Customize template for film section and pages.
Diffstat (limited to 'templates/film/page.html')
-rw-r--r--templates/film/page.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/film/page.html b/templates/film/page.html
new file mode 100644
index 0000000..df4076e
--- /dev/null
+++ b/templates/film/page.html
@@ -0,0 +1,18 @@
+{% extends "base.html" %}
+{% block language %}
+ {% set translations = page.translations %}
+ {% include "translation-links.html" %}
+{% endblock langauge %}
+
+{% block content %}
+{% set post = page -%}
+<article class="post">
+ {% include "film/post_header.html" %}
+ <section class="post-body">
+ {{ post.content | safe }}
+ </section>
+ <footer>
+ {% include "license.html" %}
+ </footer>
+</article>
+{% endblock content %}