From 493cfba523385691e47e632f69eb913efaba576e Mon Sep 17 00:00:00 2001 From: Xin <5097752+imfing@users.noreply.github.com> Date: Sun, 31 Aug 2025 12:47:52 +0100 Subject: [PATCH] fix(tags): update tag link to use the correct tag title instead of page title (#812) --- layouts/_partials/tags.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/_partials/tags.html b/layouts/_partials/tags.html index d73d635..446fb9d 100644 --- a/layouts/_partials/tags.html +++ b/layouts/_partials/tags.html @@ -2,6 +2,6 @@ {{- range $tag := $context.Params.tags -}} {{- with $context.Site.GetPage (printf "/tags/%s" $tag) -}} - #{{ .Title }} + #{{ $tag }} {{- end -}} {{- end -}}