#132, add urlize to taxonomy templates

This commit is contained in:
Alex Shpak
2020-01-17 21:31:26 +01:00
parent bce8940c62
commit 9888c52dbf
2 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
<nav>
<ul>
{{ range $term, $_ := .Site.Taxonomies }}
{{ with $.Site.GetPage (printf "/%s" $term) }}
{{ with $.Site.GetPage (printf "/%s" $term | urlize) }}
<li class="book-section-flat">
<strong>{{ .Title | title }}</strong>
<ul>
@@ -13,7 +13,7 @@
{{ end }}
</ul>
</li>
{{ end }}
{{ end }}
{{ end }}
</ul>
</nav>