1
0
Fork 0
hugo/docs/content/en/functions/collections/Last.md

682 B

title description categories keywords params aliases
collections.Last Returns the given collection, limited to the last N elements.
functions_and_methods
aliases returnType signatures
last
any
collections.Last N COLLECTION
/functions/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 }}