fix(templates): strip base_url from nav hrefs and unescape image src URLs

This commit is contained in:
2026-05-21 00:33:28 +02:00
parent e9040f66c5
commit 6b877b6100
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
{%- set source_path = "static/images/" ~ src -%}
{%- set resized = resize_image(path=source_path, width=width, op="fit_width", quality=85) -%}
<img
src="{{ resized.url }}"
src="{{ resized.url | safe }}"
width="{{ resized.width }}"
height="{{ resized.height }}"
alt="{{ alt }}"