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 }}