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

index.html « layouts - github.com/colorchestra/smol.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd86013415f076afe7731369e38b4a08a75dd9f5 (plain)
1
2
3
4
5
6
7
8
9
{{ define "main" }}
	<main>
		{{ $paginator := .Paginate (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) }}
		{{ range $paginator.Pages }}
			{{ .Render "summary" }}
		{{ end }}
		{{ partial "pagination.html" . }}
	</main>
{{ end }}