From 97ded5db20bd901ef48b1f50abf5f7dc83e667bd Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Wed, 22 Apr 2026 11:51:45 +0200 Subject: fix: add breadcrumb to /is/ and /repository/ list pages in both languages Section list templates (is/list.html, repository/list.html) were missing the breadcrumb partial. Also extended JSON-LD breadcrumb generation to include section-kind pages, not just single pages. --- themes/danix-xyz-hacker/layouts/partials/head-meta.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'themes/danix-xyz-hacker/layouts/partials/head-meta.html') diff --git a/themes/danix-xyz-hacker/layouts/partials/head-meta.html b/themes/danix-xyz-hacker/layouts/partials/head-meta.html index 89b5d50..34a60e2 100644 --- a/themes/danix-xyz-hacker/layouts/partials/head-meta.html +++ b/themes/danix-xyz-hacker/layouts/partials/head-meta.html @@ -53,5 +53,5 @@ {{ end }} {{ end }} -{{/* Structured data: BreadcrumbList JSON-LD (single content pages only) */}} -{{ if eq .Kind "page" }}{{ partial "breadcrumb-jsonld.html" . }}{{ end }} +{{/* Structured data: BreadcrumbList JSON-LD (single pages and named sections) */}} +{{ if or (eq .Kind "page") (eq .Kind "section") }}{{ partial "breadcrumb-jsonld.html" . }}{{ end }} -- cgit v1.2.3