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

list.html « _default « layouts - github.com/J-Siu/hugo-theme-sk1.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a85509622a4f94163c197af4259b85bd1474cb27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{define "main"}}

<!--$paginator-->
{{$paginator := .Paginate (where .Site.RegularPages "Type" "in" site.Params.mainSections)}}

<!--list-->
<ul>
	{{range $paginator.Pages}}
	<li>{{.Date.Format "2006-01-02"}} | <a href="{{.RelPermalink}}">{{.Title}}</a></li>
	{{end}}
</ul>

<!--pagination-->
{{template "_internal/pagination.html" .}}

{{end}}