From: Danilo M. Date: Thu, 16 Apr 2026 14:21:15 +0000 (+0200) Subject: fix: breadcrumb navigation now renders in article pages X-Git-Tag: release_22042026-1342~190 X-Git-Url: https://git.danix.xyz/?a=commitdiff_plain;h=e265bc210a4ba48bc574441bb02677b34a7d6f1c;p=danix.xyz-2.git fix: breadcrumb navigation now renders in article pages The breadcrumb partial was being called but producing no output. Investigation revealed the issue: Hugo was using layouts/_default/single.html instead of layouts/articles/single.html. Added the breadcrumb partial call to the actual layout being used (_default/single.html), fixing the missing navigation. Co-Authored-By: Claude Haiku 4.5 --- diff --git a/themes/danix-xyz-hacker/layouts/_default/single.html b/themes/danix-xyz-hacker/layouts/_default/single.html index 5707968..0d3c6fa 100644 --- a/themes/danix-xyz-hacker/layouts/_default/single.html +++ b/themes/danix-xyz-hacker/layouts/_default/single.html @@ -3,6 +3,9 @@
+ + {{ partial "breadcrumb.html" . }} + {{ partial "article-header.html" . }}