summaryrefslogtreecommitdiff
path: root/layouts/home.html
blob: b1e0212d9ba99e8fc69df6a5acdc46e7504aa9df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ define "main" }}
<article>
	<header>
		<h1>
			{{ .Page.Title }}
		</h1>
		<small>
		</small>
	</header>
	<main>
		{{ .Content }}
	</main>
	<footer>
		<p class="text-center">
			<a class="image-link" rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">
				<img alt="Creative Commons License" src="/img/cc-by-sa.png" />
			</a>
		</p>
	</footer>
</article>
{{ end }}