From fe1d30dc558f3de9ce2fb5b7d548d651986f0e14 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Tue, 18 Jul 2023 22:47:19 +0200 Subject: Show the current series in the post -> using tags --- themes/elenq/templates/article.html | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'themes/elenq/templates/article.html') diff --git a/themes/elenq/templates/article.html b/themes/elenq/templates/article.html index 07d5470..868b8bb 100644 --- a/themes/elenq/templates/article.html +++ b/themes/elenq/templates/article.html @@ -19,7 +19,8 @@ title="Permalink to {{ article.title|striptags }}">{{ article.title }} {% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }} - + + + + {% if article.tags %} +
+

+ From the series: + {% for tag in article.tags %} + {{ tag }} + {% endfor %} +

+
+ {% endif %} + + +
{{ article.content }}
-- cgit v1.2.3