From: Danilo M. Date: Fri, 17 Apr 2026 14:04:29 +0000 (+0200) Subject: fix: show Related Articles widget only on articles, not pages X-Git-Tag: release_22042026-1342~115 X-Git-Url: https://git.danix.xyz/?a=commitdiff_plain;h=b4a9bcc24afac66ec173fff9b2e5706425e5960f;p=danix.xyz-2.git fix: show Related Articles widget only on articles, not pages Add type check: widget now only renders when .Type == 'articles' Pages in the 'is' section won't show the related widget. Co-Authored-By: Claude Haiku 4.5 --- diff --git a/themes/danix-xyz-hacker/layouts/partials/sidebar.html b/themes/danix-xyz-hacker/layouts/partials/sidebar.html index 574eb85..0d1b802 100644 --- a/themes/danix-xyz-hacker/layouts/partials/sidebar.html +++ b/themes/danix-xyz-hacker/layouts/partials/sidebar.html @@ -7,8 +7,8 @@

- - {{ if .Site.Params.relatedPosts }} + + {{ if and .Site.Params.relatedPosts (eq .Type "articles") }} {{ $related := first 5 (.Site.RegularPages.Related .) }}

{{ i18n "relatedPosts" }}