hugo

Fork of github.com/gohugoio/hugo with reverse pagination support

git clone git://git.shimmy1996.com/hugo.git

last.md (476B)

    1 ---
    2 title: last
    3 linktitle: last
    4 description: "slices an array to only the last <em>N</em>th elements."
    5 date: 2017-02-01
    6 publishdate: 2017-02-01
    7 lastmod: 2017-02-01
    8 keywords: []
    9 categories: [functions]
   10 menu:
   11   docs:
   12     parent: "functions"
   13 toc:
   14 signature: ["last INDEX COLLECTION"]
   15 workson: [lists, taxonomies, terms, groups]
   16 hugoversion:
   17 relatedfuncs: []
   18 deprecated: false
   19 draft: false
   20 aliases: []
   21 ---
   22 
   23 ```
   24 {{ range last 10 .Pages }}
   25     {{ .Render "summary" }}
   26 {{ end }}
   27 ```