From e265bc210a4ba48bc574441bb02677b34a7d6f1c Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Thu, 16 Apr 2026 16:21:15 +0200 Subject: 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 --- themes/danix-xyz-hacker/layouts/_default/single.html | 3 +++ 1 file changed, 3 insertions(+) (limited to 'themes') 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" . }} -- cgit v1.2.3