Downcase tags

This commit is contained in:
David Eisinger
2024-11-20 22:40:26 -05:00
parent 99335c45d1
commit e96db66051
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
<h2>
<a href="/tags/">Tags</a> <span>&gt;</span>
#{{ .Title }}
#{{ strings.ToLower .Title }}
</h2>
<ul>

View File

@@ -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 }}