More taxonomy examples in templates.
authorspf13 <steve.francia@gmail.com>
Sat, 30 Aug 2014 03:41:53 +0000 (23:41 -0400)
committerspf13 <steve.francia@gmail.com>
Sat, 30 Aug 2014 03:41:53 +0000 (23:41 -0400)
docs/content/templates/terms.md
docs/content/templates/variables.md

index 3c9f5445d351b161bf3b9aa2260cfa7683a665ab..858eeccf730acf4cb8e090c8bf2995b4f7937df2 100644 (file)
@@ -89,6 +89,32 @@ content tagged with each tag.
     {{ partial "footer.html" }}
 
 
+Another example listing the content for each term (ordered by Date)
+
+
+    {{ partial "header.html" . }}
+    {{ partial "subheader.html" . }}
+
+    <section id="main">
+      <div>
+       <h1 id="title">{{ .Title }}</h1>
+
+        {{ $data := .Data }}
+        {{ range $key,$value := .Data.Terms.ByCount }}
+        <h2><a href="{{ $data.Plural }}/{{ $value.Name | urlize }}"> {{ $value.Name }} </a> {{ $value.Count }} </h2>
+        <ul>
+            {{ range $value.Pages.ByDate }}
+            <li>
+                <a href="{{ .Permalink }}">{{ .Title }}</a>
+            </li>
+            {{ end }}
+        </ul>
+        {{ end }}
+      </div>
+    </section>
+
+    {{ partial "footer.html" }}
+
 ## Ordering
 
 Hugo can order the meta data in two different ways. It can be ordered by the
index f76a6465c1bc228fcece1e593c1c0ec763073dae..2a6ef22a0c1a786fe4a60c217df27c6694b9c951 100644 (file)
@@ -34,7 +34,7 @@ matter, content or derived from file location.
 **.Permalink** The Permanent link for this page.<br>
 **.RelPermalink** The Relative permanent link for this page.<br>
 **.LinkTitle** Access when creating links to this content. Will use linktitle if set in front-matter, else title<br>
-**.Indexes** These will use the field name of the plural form of the index (see tags and categories above)<br>
+**.Taxonomies** These will use the field name of the plural form of the index (see tags and categories above)<br>
 **.RSSLink** Link to the indexes' rss link <br>
 **.TableOfContents** The rendered table of contents for this content<br>
 **.Prev** Pointer to the previous content (based on pub date)<br>
@@ -76,7 +76,7 @@ includes indexes, lists and the homepage.
 Also available is `.Site` which has the following:
 
 **.Site.BaseUrl** The base URL for the site as defined in the config.json file.<br>
-**.Site.Indexes** The indexes for the entire site.<br>
+**.Site.Taxonomies** The indexes for the entire site.<br>
 **.Site.LastChange** The date of the last change of the most recent content.<br>
 **.Site.Recent** Array of all content ordered by Date, newest first.<br>
 **.Site.Params** A container holding the values from `params` in your site configuration file.<br>