fix: remove duplicate structured-data partial call (IFK-15)
All checks were successful
Deploy Internet for Kids / Build & Push (push) Successful in 11s
Deploy Internet for Kids / Deploy (push) Successful in 5s
Deploy Internet for Kids / Health Check (push) Successful in 1s
Deploy Internet for Kids / Smoke Tests (push) Successful in 2s
Deploy Internet for Kids / IndexNow Ping (push) Successful in 7s
Deploy Internet for Kids / Promote to Latest (push) Successful in 1s
Deploy Internet for Kids / Rollback (push) Has been skipped
Deploy Internet for Kids / Audit (push) Successful in 1s

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 <noreply@anthropic.com>
This commit is contained in:
Christian Gick
2026-04-16 20:54:23 +03:00
parent 03fcececfc
commit 3c35ff84fc

View File

@@ -53,6 +53,5 @@
</footer> </footer>
{{ partial "rybbit.html" . }} {{ partial "rybbit.html" . }}
{{ partial "structured-data.html" . }}
</body> </body>
</html> </html>