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: 844a991e3a16bdc40a400fe7252a3c81001e6be2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
{{ define "main" }}
<div>
	<article>
		<header>
			<p>
				{{ humanize .Section | upper }}
			</p>
		</header>
		<div class="c-rich-text">
			{{ .Content }}
		</div>
	</article>
</div>
{{ end }}