From e6c27f76aa8a3f2b03f082c9c869e7a6269d6249 Mon Sep 17 00:00:00 2001 From: philgs Date: Mon, 5 Jan 2015 06:15:49 -0500 Subject: [PATCH] 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. --- docs/content/content/summaries.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/content/content/summaries.md b/docs/content/content/summaries.md index 35acaaddb..01179e2a6 100644 --- a/docs/content/content/summaries.md +++ b/docs/content/content/summaries.md @@ -29,3 +29,14 @@ If the summary content divider exists within a piece of content, Hugo will split When using user-defined summaries, <!--more-->, 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 }} +
+

{{ .Title }}

+ {{ .Summary }} +
+ {{ end }}