Update docs for `last` template function
authorAriejan de Vroom <ariejan@ariejan.net>
Wed, 10 Jun 2015 22:12:27 +0000 (00:12 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 15 Jun 2015 19:18:38 +0000 (21:18 +0200)
docs/content/templates/functions.md

index a731f69831cd8d2cfa90e617fd1a207bc9ac23da..83ba9017734ac2ea9bf15b7ba24fc589432ff4f9 100644 (file)
@@ -76,11 +76,24 @@ e.g.
         {{ .Render "summary" }}
     {{ 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
 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
 X.
 
+Works on [lists](/templates/list/), [taxonomies](/taxonomies/displaying/), [terms](/templates/terms/), [groups](/templates/list/)
+
 e.g.
 
     {{ range after 10 .Data.Pages }}