summary refs log tree commit diff stats
path: root/src/themes/serene/templates/post.html
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-04-25 21:54:44 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-04-25 21:54:44 +0200
commita3854f2a3488b0724b938e8ea8cd96bc16517ba5 (patch)
tree6781918b77fb6e7d78767dc50ff9431a3a11ca72 /src/themes/serene/templates/post.html
parentfix(package.nix): Patch the pdf files into the final artefact (diff)
downloadb-peetz.de-a3854f2a3488b0724b938e8ea8cd96bc16517ba5.zip
fix(src/themes/serene/templates): Mark all permalinks as safe
Diffstat (limited to 'src/themes/serene/templates/post.html')
-rw-r--r--src/themes/serene/templates/post.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/themes/serene/templates/post.html b/src/themes/serene/templates/post.html
index f31810a..24fe0cd 100644
--- a/src/themes/serene/templates/post.html
+++ b/src/themes/serene/templates/post.html
@@ -103,7 +103,7 @@
           <div id="tags">
             {% for tag in page.taxonomies.tags -%}
             {% set tag_slugify = tag | slugify -%}
-            <a class="instant" href="{{ config.base_url ~ '/tags/' ~ tag_slugify }}"><span>#</span>{{ tag }}</a>
+            <a class="instant" href="{{ config.base_url ~ '/tags/' ~ tag_slugify | safe }}"><span>#</span>{{ tag }}</a>
             {%- endfor %}
           </div>
           {% endif %}