From 9888c52dbfa8dbd1b7144f524d8d5498d41bf3e1 Mon Sep 17 00:00:00 2001
From: Alex Shpak <alex-shpak@users.noreply.github.com>
Date: Fri, 17 Jan 2020 21:31:26 +0100
Subject: #132, add urlize to taxonomy templates

---
 layouts/partials/docs/post-meta.html | 7 ++++---
 layouts/partials/docs/taxonomy.html  | 4 ++--
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/layouts/partials/docs/post-meta.html b/layouts/partials/docs/post-meta.html
index a129944..41221c7 100644
--- a/layouts/partials/docs/post-meta.html
+++ b/layouts/partials/docs/post-meta.html
@@ -7,12 +7,13 @@
 
 {{ range $term, $_ := .Site.Taxonomies }}
   {{ with $list := index $.Params $term }}
+  <div>
     {{ range $n, $single := $list }}{{ if $n }}, {{ end }}
-      {{ with $.Site.GetPage (printf "/%s/%s" $term $single) }}
-        <a href="{{ .RelPermalink }}">{{ $single }}</a>
+      {{ with $.Site.GetPage (printf "/%s/%s" $term $single | urlize) }}
+        <a href="{{ .RelPermalink }}">{{ .Title }}</a>
       {{- end }}
     {{- end }}
-    <br />
+  </div>
   {{ end }}
 {{ end }}
 
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>
-- 
cgit v1.2.3