diff options
author | Friedrich Beckmann <friedrich.beckmann@gmx.de> | 2025-06-14 14:38:12 +0200 |
---|---|---|
committer | Friedrich Beckmann <friedrich.beckmann@gmx.de> | 2025-06-14 14:38:12 +0200 |
commit | ed1222f2330e38335a521e7673c9f9f88f5c10fd (patch) | |
tree | 59547965b974744dda781b0b82831611f59a87b8 | |
parent | 0701ab8b0bc319cd4d830d9ee0fca5df0c10425e (diff) |
fixed link error from taxonomy to folder
-rw-r--r-- | themes/fredo/layouts/_partials/post-short.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/fredo/layouts/_partials/post-short.html b/themes/fredo/layouts/_partials/post-short.html index 808297d..ac65548 100644 --- a/themes/fredo/layouts/_partials/post-short.html +++ b/themes/fredo/layouts/_partials/post-short.html @@ -24,7 +24,7 @@ {{ end }} <p> {{ $showdate | time.Format ":date_long" }}, {{ range .Param "bands" }} - <a href="/posts/{{ . }}">{{ . }}</a> + <a href="/posts/{{ lower . }}">{{ . }}</a> {{ end }} </p> </section> |