close #37: remove the deprecated preserveTaxonomyNames = true, and use .Page.Title...
authorYihui Xie <xie@yihui.name>
Thu, 18 Apr 2019 18:54:08 +0000 (13:54 -0500)
committerYihui Xie <xie@yihui.name>
Thu, 18 Apr 2019 18:54:08 +0000 (13:54 -0500)
exampleSite/config.toml
layouts/_default/terms.html

index 38e85d1359bcfd53db444c8d5de77c0de8a33c50..7147426baf5d97e356f599a8753c97c1ce55f54b 100644 (file)
@@ -5,7 +5,6 @@ theme = "hugo-xmin"
 googleAnalytics = ""
 disqusShortname = ""
 ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
-preserveTaxonomyNames = true
 footnotereturnlinkcontents = "↩"
 
 [permalinks]
index 09b3785be270273fbb1abbed7cf622567520b0ea..1b515a50ed431d48544229cc2e0771f15a6527ea 100644 (file)
@@ -3,12 +3,9 @@
 <h1>{{ .Title }}</h1>
 
 <ul class="terms">
-  {{ range $key, $value := .Data.Terms }}
+  {{ range .Data.Terms }}
   <li>
-    <a href="{{ (print "/" $.Data.Plural "/" $key | urlize) | relURL }}">
-      {{ $key }}
-    </a>
-    ({{ len $value }})
+    <a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a> ({{ .Count }})
   </li>
   {{ end }}
 </ul>