summaryrefslogtreecommitdiff
path: root/layouts/boop/single.html
blob: 9392c58afc4097e27380706f46a7567fa6d46215 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">

{{ partial "head.html" . }}

<body>

<h1>
	{{$.Title}}
	<small>
		<span class="date">{{.Date.Format "January 2, 2006"}}</span>
		on
		<span class="site"><a href="{{.Site.BaseURL}}">{{.Site.Title}}</a></span>
	</small>
</h1>

<main>
	<article>
		{{.Content}}
	</article>
</main>

{{ partial "footer.html" }}
</body>