2017-02-26 19:27:05 -06:00

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
functions
iteration
last
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 }}