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

single.html « blog « layouts - github.com/GDGToulouse/devfest-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7aa8c8b4cb622eff44d6db801fdb661f64462550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ define "main" }}

<div class="hero" >
	<div class="img" style="color: {{ .Params.color | default "#fff" }};background-image: url({{ .Params.image }})"></div>

	<div class="description">
		<h1>
			<span>{{ .Title }}</span>
			<small>{{ .Params.brief }}</small>
		</h1>
<!--
		<hr>
		{{ .TableOfContents }} -->
	</div>
</div>

<section class="content">

	{{ .Content }}
</section>

{{ end }}