Truncated
Syntax
PAGE.Truncated
Returns
bool
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
summaryLength
in your site configuration. - Manually split the content with a
<--more-->
tag in Markdown. Everything before the tag is included in the summary. - Create a
summary
field in front matter.
The Truncated
method returns true
if the content length exceeds the summary length. This is useful for rendering a “read more” link:
{{ range .Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ .Summary }}
{{ if .Truncated }}
<a href="{{ .RelPermalink }}">Read more...</a>
{{ end }}
{{ end }}