mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
687 B
687 B
title, description, categories, keywords, action, aliases
| title | description | categories | keywords | action | aliases | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| collections.Last | Returns the given collection, limited to the last N elements. |
|
|
{{ 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 }}