Summary
Syntax
PAGE.Summary
Returns
template.HTML
There are three ways to define the content summary:
- Let Hugo create the summary based on the first 70 words. You can change the number of words by setting the 
summaryLengthin your site configuration. - Manually split the content with a 
<!--more-->tag in Markdown. Everything before the tag is included in the summary. - Create a 
summaryfield in front matter. 
To list the pages in a section with a summary beneath each link:
{{ range .Pages }}
  <h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
  {{ .Summary }}
{{ end }}