Fix HTML entity escaping in theme templates by using content|raw

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-18 23:51:21 +02:00
parent e8c04adbcb
commit 3468f3a8db
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -3,6 +3,6 @@
{% block content %}
<div class="col-12 col-md-8 col-lg-6 p-3 text-start">
<h1 class="funky-font main-header">{{ page.title }}</h1>
{{ content }}
{{ content|raw }}
</div>
{% endblock %}
+1 -1
View File
@@ -6,7 +6,7 @@
</div>
<div class="col-12 col-md-6 p-3 text-start">
<h1 class="funky-font main-header text-center">{{ page.title }}</h1>
{{ content }}
{{ content|raw }}
</div>
<div class="col-12 col-md-3 p-3 text-center">
<img src="{{ url('theme://images/logo-blauw.png') }}" class="img-fluid mb-3" alt="Logo Galerie Groot Welsden">
+1 -1
View File
@@ -9,7 +9,7 @@
<div class="row mb-3">
<div class="col-12 col-lg-8 offset-lg-2">
<h1 class="funky-font main-header text-center">{{ page.title }}</h1>
{{ content }}
{{ content|raw }}
</div>
</div>
<div class="row g-3">
+1 -1
View File
@@ -7,7 +7,7 @@
</div>
<div class="col-12 col-md-6 col-lg-6 p-3 text-start">
<h1 class="funky-font main-header text-center">Natascha Rieter</h1>
{{ content }}
{{ content|raw }}
</div>
<div class="col-12 col-md-6 col-lg-3 p-3 text-center">
<img src="{{ url('theme://images/logo-blauw.png') }}" class="img-fluid mb-3" alt="Logo Galerie Groot Welsden">