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

single.html « page « layouts - github.com/heyeshuang/hugo-theme-tokiwa.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22395ac2aa7f116fdcbdfb8a727d42b5085bb7c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
{{ define "main" }}
<div>
	<article>
		<header>
			<p>
				{{ humanize .Section | upper }}
			</p>
			<h1>
				{{ .Title }}
			</h1>
		</header>
		<div>
			{{ .Content }}
		</div>
	</article>
</div>
{{ end }}