From 54bdf7f0b59fcc6e481637eb24651da05636f6e1 Mon Sep 17 00:00:00 2001 From: svemagie <869694+svemagie@users.noreply.github.com> Date: Sat, 7 Mar 2026 17:31:40 +0100 Subject: [PATCH] fix: replace remaining date.toISOString() calls in JSON-LD with isoDate filter Co-Authored-By: Claude Sonnet 4.6 --- theme/_includes/layouts/post.njk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/_includes/layouts/post.njk b/theme/_includes/layouts/post.njk index 1773e0d..07f93b9 100644 --- a/theme/_includes/layouts/post.njk +++ b/theme/_includes/layouts/post.njk @@ -212,8 +212,8 @@ withBlogSidebar: true "@type": "WebPage", "@id": "{{ site.url }}{{ page.url }}" }, - "datePublished": "{{ date.toISOString() }}", - "dateModified": "{{ date.toISOString() }}", + "datePublished": "{{ date | isoDate }}", + "dateModified": "{{ date | isoDate }}", "author": { "@type": "Person", "name": "{{ site.author.name }}",