github.com/rabbouni145/gg@v0.47.1/docs/content/en/functions/first.md (about) 1 --- 2 title: first 3 linktitle: first 4 description: "Slices an array to only the first _N_ elements." 5 godocref: 6 date: 2017-02-01 7 publishdate: 2017-02-01 8 lastmod: 2017-02-01 9 categories: [functions] 10 menu: 11 docs: 12 parent: "functions" 13 keywords: [iteration] 14 signature: ["first LIMIT COLLECTION"] 15 workson: [lists,taxonomies,terms,groups] 16 hugoversion: 17 relatedfuncs: [after,last] 18 deprecated: false 19 aliases: [] 20 --- 21 22 23 ``` 24 {{ range first 10 .Pages }} 25 {{ .Render "summary" }} 26 {{ end }} 27 ```