mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-10-18 17:52:29 -04:00
29 lines
470 B
Markdown
29 lines
470 B
Markdown
---
|
|
title: last
|
|
linktitle: last
|
|
description: Slices an array to only the last Nth elements.
|
|
godocref:
|
|
date: 2017-02-01
|
|
publishdate: 2017-02-01
|
|
lastmod: 2017-02-01
|
|
tags: []
|
|
categories: [functions]
|
|
toc:
|
|
signature:
|
|
workson: [lists, taxonomies, terms, groups]
|
|
hugoversion:
|
|
relatedfuncs: []
|
|
deprecated: false
|
|
draft: false
|
|
aliases: []
|
|
---
|
|
|
|
`last` slices an array to only the last *N*th elements.
|
|
|
|
```
|
|
{{ range last 10 .Data.Pages }}
|
|
{{ .Render "summary" }}
|
|
{{ end }}
|
|
```
|
|
|