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

{{ end }}