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

690 B

title description categories keywords params aliases
collections.First Returns the given collection, limited to the first N elements.
functions_and_methods
aliases returnType signatures
first
any
collections.First N COLLECTION
/functions/first
{{ range first 5 .Pages }}
  {{ .Render "summary" }}
{{ end }}

Set N to zero to return an empty collection.

{{ $emptyPageCollection := first 0 .Pages }}

Use first and where together.

{{ range where .Pages "Section" "articles" | first 5 }}
  {{ .Render "summary" }}
{{ end }}