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: 20050accca545aa6c1c265784ec21921bddef338 (plain)
1
2
3
4
5
6
7
8
9
{{ define "main" }}
{{$paginator := .Paginate (where .Site.Pages "Kind" "page").ByDate.Reverse 50 }}
<div class="archive-table">
  {{ range $paginator.Pages }}
  {{ partial "listPage" . }}
  {{ end }}
</div>

{{ end }}