From c0c2687dc32952fa4880ae85d47ef544afd8add3 Mon Sep 17 00:00:00 2001 From: Mark Dumay <61946753+markdumay@users.noreply.github.com> Date: Mon, 30 Mar 2026 11:54:29 +0200 Subject: [PATCH] fix(list): correct relative permalink link format Remove erroneous '#' prefix from RelPermalink in the table content renderer, which was producing anchor links instead of proper relative page links. Co-Authored-By: Claude Sonnet 4.6 --- component-library/components/list/list.hugo.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/component-library/components/list/list.hugo.html b/component-library/components/list/list.hugo.html index 451e616..bbced97 100644 --- a/component-library/components/list/list.hugo.html +++ b/component-library/components/list/list.hugo.html @@ -84,7 +84,7 @@ {{ if site.Params.env_bookshop_live }} {{ $content = printf "%s[%s](#!) | %s |\n" $content .title .description }} {{ else }} - {{ $content = printf "%s[%s](#%s) | %s |\n" $content .LinkTitle .RelPermalink .Description }} + {{ $content = printf "%s[%s](%s) | %s |\n" $content .LinkTitle .RelPermalink .Description }} {{ end }} {{ end }} {{ end }}