Welcome to mirror list, hosted at ThFree Co, Russian Federation.

archive.html « section « layouts - github.com/urjaacharya/redgood.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3ca7c9047359f74bc94cd30f5b4630a368e55fbf (plain)
1
2
3
4
5
6
7
8
9
{{ define "main" }}
{{$paginator := .Paginate (where .Site.Pages "Kind" "page").ByDate.Reverse 20 }}
<div class="archive-table">
  {{ range $paginator.Pages }}
  {{ partial "listPage" . }}
  {{ end }}
</div>

{{ end }}