summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/last.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/last.md')
-rw-r--r--docs/content/en/functions/last.md15
1 files changed, 3 insertions, 12 deletions
diff --git a/docs/content/en/functions/last.md b/docs/content/en/functions/last.md
index 4a752cb82..72e6a4c0d 100644
--- a/docs/content/en/functions/last.md
+++ b/docs/content/en/functions/last.md
@@ -1,27 +1,18 @@
---
title: last
-linktitle: last
description: "slices an array to only the last <em>N</em>th elements."
-date: 2017-02-01
-publishdate: 2017-02-01
-lastmod: 2017-02-01
keywords: []
categories: [functions]
menu:
docs:
- parent: "functions"
+ parent: functions
toc:
signature: ["last INDEX COLLECTION"]
-workson: [lists, taxonomies, terms, groups]
-hugoversion:
relatedfuncs: []
-deprecated: false
-draft: false
-aliases: []
---
-```
+```go-html-template
{{ range last 10 .Pages }}
- {{ .Render "summary" }}
+ {{ .Render "summary" }}
{{ end }}
```