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

taxonomy.html « _default « layouts - github.com/heyeshuang/hugo-theme-tokiwa.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 171a44cb99bbf5cdbab7645ee24802397a952b86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" }}
<h1 class="pb-4">
	{{ .Title }}
</h1>
<div>
	<section>
		{{ range (.Paginator 10).Pages }}
		<div>
			{{ partial "summary.html" . }}
		</div>
		{{ end }}
	</section>
</div>
{{ end }}
{{define "footer"}}
{{ partial "list-footer.html" . }}
{{end}}