Add example code to Summaries
authorphilgs <phil.gs@gmail.com>
Mon, 5 Jan 2015 11:15:49 +0000 (06:15 -0500)
committerbep <bjorn.erik.pedersen@gmail.com>
Mon, 5 Jan 2015 17:44:25 +0000 (18:44 +0100)
I was initially confused about how to use summaries. The only example code I found in the docs was on the page for list nodes, but that uses `Render "summary"`, which is for views, not an article summary. I thought a little example here might clarify the issue for future users.

docs/content/content/summaries.md

index 35acaaddb16004109998a3c1f432a964e76955aa..01179e2a66eb8514fe32ceb76827e0b98e375d68 100644 (file)
@@ -29,3 +29,14 @@ If the summary content divider exists within a piece of content, Hugo will split
 When using user-defined summaries, <code>&#60;&#33;&#45;&#45;more&#45;&#45;&#62;</code>, Hugo will preserve the HTML in the summary.
 
 The summary content divider only applies to the content that it appears in.
+
+## Showing Summaries
+
+You can show content summaries with the following code. You could do this, for example, on a [list](/templates/list/) node.
+
+    {{ range first 10 .Data.Pages }}
+      <div class="summary">
+        <h4><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
+        {{ .Summary }}
+      </div>
+    {{ end }}