From d42e31f55568c3e33bde160a78aea9e8ea809fee Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 25 Sep 2020 14:15:30 +0200 Subject: Customize template for film section and pages. --- templates/film/section.html | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 templates/film/section.html (limited to 'templates/film/section.html') diff --git a/templates/film/section.html b/templates/film/section.html new file mode 100644 index 0000000..e4d221d --- /dev/null +++ b/templates/film/section.html @@ -0,0 +1,33 @@ +{% extends "base.html" %} +{% block language %} +{% set translations = section.translations %} +{% include "translation-links.html" %} +{% endblock language %} + +{% block content %} +

{{ section.title }}

+ +{{ section.description }} + +
+ {% for post in section.pages | reverse %} + + {% endfor %} +
+{% endblock content %} -- cgit v1.2.3