Add document about page grouping functions
authorTatsushi Demachi <tdemachi@gmail.com>
Wed, 27 Aug 2014 13:50:06 +0000 (22:50 +0900)
committerspf13 <steve.francia@gmail.com>
Thu, 28 Aug 2014 16:56:32 +0000 (12:56 -0400)
docs/content/templates/list.md

index 5fc14a0bb4eff209eb639515601afe1245b1bb0a..41fa8675d56ff40f0eed87dbc242e3ae31680a43 100644 (file)
@@ -215,3 +215,39 @@ Can be applied to any of the above. Using Date for an example.
     <div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
     </li>
     {{ end }}
+
+## Grouping Content
+
+Hugo provides some grouping functions for list pages. You can use them to
+group pages by Section, Date etc.
+
+Here are a variety of different ways you can group the content items in
+your list templates:
+
+### Grouping by Page field
+
+    {{ range .Data.Pages.GroupBy "Section" "asc" }}
+    <h3>{{ .Key }}</h3>
+    <ul>
+        {{ range .Data }}
+        <li>
+        <a href="{{ .Permalink }}">{{ .Title }}</a>
+        <div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
+        </li>
+        {{ end }}
+    </ul>
+    {{ end }}
+
+### Grouping by Page date
+
+    {{ range .Data.Pages.GroupByDate "2006-01" "desc" }}
+    <h3>{{ .Key }}</h3>
+    <ul>
+        {{ range .Data }}
+        <li>
+        <a href="{{ .Permalink }}">{{ .Title }}</a>
+        <div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
+        </li>
+        {{ end }}
+    </ul>
+    {{ end }}