commit e96db66051c36fd9561c9d5c16552f57c07f8b1f parent 99335c45d15d903ba2ff3134fe6e6f5f7cf1737e Author: David Eisinger <[email protected]> Date: Wed, 20 Nov 2024 22:40:26 -0500 Downcase tags Diffstat:
| M | themes/v2/layouts/_default/tag.html | | | 2 | +- |
| M | themes/v2/layouts/_default/tag.terms.html | | | 2 | +- |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/themes/v2/layouts/_default/tag.html b/themes/v2/layouts/_default/tag.html @@ -4,7 +4,7 @@ <h2> <a href="/tags/">Tags</a> <span>></span> - #{{ .Title }} + #{{ strings.ToLower .Title }} </h2> <ul> diff --git a/themes/v2/layouts/_default/tag.terms.html b/themes/v2/layouts/_default/tag.terms.html @@ -7,7 +7,7 @@ <ul> {{ range .Data.Terms.Alphabetical }} <li> - <a href="{{ .Page.Permalink }}">#{{ .Page.Title }}</a> + <a href="{{ .Page.Permalink }}">#{{ strings.ToLower .Page.Title }}</a> ({{ .Count }}) </li> {{ end }}