collections.Last
Returns the given collection, limited to the last N elements.
Syntax
collections.Last N COLLECTION
Returns
any
Alias
last
{{ range last 10 .Pages }}
{{ .Render "summary" }}
{{ end }}
Set N
to zero to return an empty collection.
{{ $emptyPageCollection := last 0 .Pages }}
Use last
and where
together.
{{ range where .Pages "Section" "articles" | last 5 }}
{{ .Render "summary" }}
{{ end }}
Last updated:
March 5, 2025
:
content: Remove "related" array from function and method pages (2fcd21ee5)
Improve this page