From bcdc90721f2d0e46da535b81a8fdd7719b593c50 Mon Sep 17 00:00:00 2001 From: tuxmain Date: Thu, 25 Dec 2025 10:53:07 +0100 Subject: [PATCH] Fix tags title --- templates/tags/list.html | 2 +- templates/tags/single.html | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/tags/list.html b/templates/tags/list.html index 16ffdf1..fa57fdf 100644 --- a/templates/tags/list.html +++ b/templates/tags/list.html @@ -14,7 +14,7 @@
{% for tag in terms %} - {{ tag.name }} ({{ tag.pages | length }})
+ {{ tag.name | safe }} ({{ tag.pages | length }})
{% endfor %}
{% endblock main %} diff --git a/templates/tags/single.html b/templates/tags/single.html index 788c72f..8e49ce7 100644 --- a/templates/tags/single.html +++ b/templates/tags/single.html @@ -7,14 +7,14 @@ {% endblock head %} {% block main %} -

{{term.name | safe}}

+

{{ term.name | safe }}

{% for page in term.pages %} {% endfor %}