mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
34 lines
687 B
Markdown
34 lines
687 B
Markdown
---
|
|
title: collections.Last
|
|
description: Returns the given collection, limited to the last N elements.
|
|
categories: []
|
|
keywords: []
|
|
action:
|
|
aliases: [last]
|
|
related:
|
|
- functions/collections/After
|
|
- functions/collections/First
|
|
returnType: any
|
|
signatures: [collections.Last N COLLECTION]
|
|
aliases: [/functions/last]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ range last 10 .Pages }}
|
|
{{ .Render "summary" }}
|
|
{{ end }}
|
|
```
|
|
|
|
Set `N` to zero to return an empty collection.
|
|
|
|
```go-html-template
|
|
{{ $emptyPageCollection := last 0 .Pages}}
|
|
```
|
|
|
|
Use `last` and [`where`] together.
|
|
|
|
```go-html-template
|
|
{{ range where .Pages "Section" "articles" | last 5 }}
|
|
{{ .Render "summary" }}
|
|
{{ end }}
|
|
```
|