collections.First
文法
collections.First N COLLECTION
戻り値
any
エイリアス
first
{{ range first 5 .Pages }}
{{ .Render "summary" }}
{{ end }}
N
をゼロに指定すると空のコレクションを返します。
{{ $emptyPageCollection := first 0 .Pages}}
first
と where
をともに用いた例です。
{{ range where .Pages "Section" "articles" | first 5 }}
{{ .Render "summary" }}
{{ end }}