shithub: hugo

Download patch

ref: e6c27f76aa8a3f2b03f082c9c869e7a6269d6249
parent: d376314763722f2523901fe23d9464ef069b892a
author: philgs <[email protected]>
date: Mon Jan 5 01:15:49 EST 2015

Add example code to Summaries

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.

--- a/docs/content/content/summaries.md
+++ b/docs/content/content/summaries.md
@@ -29,3 +29,14 @@
 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 }}