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

list.html « _default « layouts - github.com/heyeshuang/hugo-theme-tokiwa.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 893c10b1609663e5ade5893ad17fb140b3404959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "main" }}
<article>
	<section>
		{{- .Content -}}
	</section>
	<section>
		{{ range .Paginator.Pages }}
		<div>
			{{- partial "summary.html" . -}}
		</div>
		{{ end }}
	</section>
	{{- template "_internal/pagination.html" . -}}
</article>
{{ end }}