mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-10-18 17:52:29 -04:00
677 B
677 B
title | linktitle | description | godocref | date | publishdate | lastmod | categories | tags | signature | workson | hugoversion | relatedfuncs | deprecated | aliases | |||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
after | after | Slices an array to only the items after the Nth item. | 2017-02-01 | 2017-02-01 | 2017-02-01 |
|
|
|
false |
after
slices an array to only the items after the Nth item. Combining after
with first
uses both use both halves of an array split at item N.
Works on lists, taxonomies, terms, groups
e.g.
{{ range after 10 .Data.Pages }}
{{ .Render "title" }}
{{ end }}