collections.Last
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 }}