Fixing the taxonomy example. Fixed #318.
authorspf13 <steve.francia@gmail.com>
Sat, 30 Aug 2014 03:39:55 +0000 (23:39 -0400)
committerspf13 <steve.francia@gmail.com>
Sat, 30 Aug 2014 03:39:55 +0000 (23:39 -0400)
docs/content/taxonomies/displaying.md

index 3abe6bed2b3ed51df8a60bf1bdbe6dabdf701dcc..69d8bc41817d34c0a352841a6aea215512fe5d4d 100644 (file)
@@ -90,8 +90,8 @@ The following example displays all tag keys:
 ### Example
 
     <ul id="all-tags">
-      {{ range .Site.Taxonomies.tags }}
-        <li><a href="/tags/{{ .Name | urlize }}">{{ .Name }}</a></li>  
+      {{ range $name, $taxonomy := .Site.Taxonomies.tags }}
+        <li><a href="/tags/{{ $name | urlize }}">{{ $name }}</a></li>  
       {{ end }}
     </ul>