From 3c35ff84fc4d14471737d6b0fe1b151aad4cdf5d Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Thu, 16 Apr 2026 20:54:23 +0300 Subject: [PATCH] fix: remove duplicate structured-data partial call (IFK-15) structured-data.html was called both in extend-head.html (line 2) and baseof.html (line 56), resulting in duplicate JSON-LD blocks: - Home: 2x WebSite schema - Articles: 2x BlogPosting + 2x BreadcrumbList Remove the redundant call in baseof.html. Article pages now emit 1 BlogPosting + 1 BreadcrumbList as intended. Co-Authored-By: Claude Opus 4.6 --- layouts/_default/baseof.html | 1 - 1 file changed, 1 deletion(-) diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 6bc3442..4a5c2a4 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -53,6 +53,5 @@ {{ partial "rybbit.html" . }} - {{ partial "structured-data.html" . }}