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

site-header.html « partials « layouts - github.com/jimfrenette/hugo-starter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cdb90e578d063bcee8db86c2299592cc6b13a7a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<header>
	<div>
		{{ partial "site-navigation.html" . }}
		<div>
			<h1>
				{{ .Title | default .Site.Title }}
			</h1>
			{{ with .Params.description }}
			<h2>
				{{ . }}
			</h2>
			{{ end }}
		</div>
	</div>
</header>