diff options
Diffstat (limited to 'templates/film/section.html')
-rw-r--r-- | templates/film/section.html | 33 |
1 files changed, 33 insertions, 0 deletions
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 %} +<h1>{{ section.title }}</h1> + +{{ section.description }} + +<section class="post-list"> + {% for post in section.pages | reverse %} + <article class="post"> + {% include "film/post_header.html" %} + <section class="post-summary"> + {% if post.summary %} + {{ post.summary | safe }} + {% else %} + {{ post.content | safe }} + {% endif %} + </section> + <footer> + {% if post.summary %} + <a href="{{ post.permalink }}"> + {{ trans(key="moreprompt", lang=post.lang) }} + </a> + {% endif %} + </footer> + </article> + {% endfor %} +</section> +{% endblock content %} |