diff options
Diffstat (limited to 'layouts/partials/docs/taxonomy.html')
-rw-r--r-- | layouts/partials/docs/taxonomy.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/docs/taxonomy.html b/layouts/partials/docs/taxonomy.html index f2c00d5..db82e4c 100644 --- a/layouts/partials/docs/taxonomy.html +++ b/layouts/partials/docs/taxonomy.html @@ -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> |