summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/first.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/first.md')
-rw-r--r--docs/content/en/functions/first.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/docs/content/en/functions/first.md b/docs/content/en/functions/first.md
new file mode 100644
index 000000000..29ba3ac1c
--- /dev/null
+++ b/docs/content/en/functions/first.md
@@ -0,0 +1,28 @@
+---
+title: first
+linktitle: first
+description: "Slices an array to only the first _N_ elements."
+godocref:
+date: 2017-02-01
+publishdate: 2017-02-01
+lastmod: 2017-02-01
+categories: [functions]
+menu:
+ docs:
+ parent: "functions"
+keywords: [iteration]
+signature: ["first LIMIT COLLECTION"]
+workson: [lists,taxonomies,terms,groups]
+hugoversion:
+relatedfuncs: [after,last]
+deprecated: false
+aliases: []
+---
+
+
+```
+{{ range first 10 .Data.Pages }}
+ {{ .Render "summary" }}
+{{ end }}
+```
+