From f34637826ef361277541584bb200bbd2833cc168 Mon Sep 17 00:00:00 2001 From: "Claude (MonolithCMS)" Date: Mon, 25 May 2026 21:28:09 +0000 Subject: [PATCH] fix: avoid tojson in editors-picks JSON-LD (not in minijinja build) --- themes/signaldaily/templates/editors-picks.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/signaldaily/templates/editors-picks.html b/themes/signaldaily/templates/editors-picks.html index 38e8deb..47e383b 100644 --- a/themes/signaldaily/templates/editors-picks.html +++ b/themes/signaldaily/templates/editors-picks.html @@ -44,7 +44,7 @@ "@type": "BreadcrumbList", "itemListElement": [ { "@type": "ListItem", "position": 1, "name": "{{ t.breadcrumb_home | default('Home') }}", "item": "{{ site_url | safe }}/" }, - { "@type": "ListItem", "position": 2, "name": {{ (t.editors_picks_page_title | default("Editor's picks")) | tojson | safe }} } + { "@type": "ListItem", "position": 2, "name": "{{ t.editors_picks_page_title | default('Editor\'s picks') }}" } ] }