actually use .RelPermalink instead of .Permalink
authorYihui Xie <xie@yihui.name>
Thu, 18 Apr 2019 18:57:06 +0000 (13:57 -0500)
committerYihui Xie <xie@yihui.name>
Thu, 18 Apr 2019 18:57:06 +0000 (13:57 -0500)
layouts/_default/terms.html

index 1b515a50ed431d48544229cc2e0771f15a6527ea..71f47e7511ee338aa860c28cd6743e34fb0aab2a 100644 (file)
@@ -5,7 +5,7 @@
 <ul class="terms">
   {{ range .Data.Terms }}
   <li>
-    <a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a> ({{ .Count }})
+    <a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a> ({{ .Count }})
   </li>
   {{ end }}
 </ul>