From 86ef0545f45ced0bb8a5452af42b052d0017ebba Mon Sep 17 00:00:00 2001 From: Bob den Otter Date: Wed, 23 Dec 2020 18:28:14 +0100 Subject: [PATCH] Fix escaping of ContentType names in listing pages --- templates/content/listing.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/content/listing.html.twig b/templates/content/listing.html.twig index 88513216..dea95169 100644 --- a/templates/content/listing.html.twig +++ b/templates/content/listing.html.twig @@ -8,7 +8,7 @@ {% block title %} {{ macro.icon(contentType.icon_one) }} - {{ contentType.name }} + {{ contentType.name|raw }} {% if filterValue %}({{ __('label.filtered_by') }}: '{{ filterValue }}'){% endif %} {% if taxonomy %}({{ __('label.filtered_by') }}: '{{ taxonomy|split('=')|last }}'){% endif %}