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

single.html « kids « layouts - github.com/GDGToulouse/devfest-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f10e5d356a7359ba5bf6f565131a3cc4127109bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "main" }}
<div class="kids">
	<div class="hero" >
		<div class="img" style="color: {{ .Params.color | default "#fff" }};background-image: url({{ .Params.image }})">
			<div class="content">
					<h1>
						<span>{{ .Params.fullTitle }}</span>
						<small>{{ .Params.brief }}</small>
					</h1>
			</div>
		</div>
	</div>
	<section class="content">
		{{ .Content }}
	</section>
</div>

{{ end }}