summaryrefslogtreecommitdiff
path: root/layouts/home.html
blob: aa5df28ce4011879a9dde521997c9a9ad32b1729 (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" style="border-width:0" src="/img/cc-by-sa.png" />
			</a>
		</p>
	</footer>
</article>
{{ end }}