Update docs for last template function

This commit is contained in:
Ariejan de Vroom 2015-06-11 00:12:27 +02:00 committed by Bjørn Erik Pedersen
parent 2b0b4760ca
commit d8e24d5ad9

View File

@ -76,11 +76,24 @@ e.g.
{{ .Render "summary" }} {{ .Render "summary" }}
{{ end }} {{ end }}
### last
Slices an array to only the last X elements.
Works on [lists](/templates/list/), [taxonomies](/taxonomies/displaying/), [terms](/templates/terms/), [groups](/templates/list/)
e.g.
{{ range last 10 .Data.Pages }}
{{ .Render "summary" }}
{{ end }}
### after ### after
Slices an array to only the items after the Xth item. Use this in Slices an array to only the items after the Xth item. Use this in
combination with `first` use both halves of an array split a item combination with `first` use both halves of an array split a item
X. X.
Works on [lists](/templates/list/), [taxonomies](/taxonomies/displaying/), [terms](/templates/terms/), [groups](/templates/list/)
e.g. e.g.
{{ range after 10 .Data.Pages }} {{ range after 10 .Data.Pages }}