aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/404.html
blob: 96e8505c9badc51c7c337cc33737108051944ddd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{ partial "header.html" . }}
<main>
	<header class="header-inline">
		<div class="heading">
			<div class="info">
				<div class="content">
					{{ if (gt .Params.date 0) }} {{ .Date.Format "January 2, 2006" }} {{ end }} {{ if (gt .Params.author 0) }} by {{ with .Params.author }} {{ . }} {{ end }} {{ end }}
				</div>
			</div>
			<div class="content">
				<h1>{{ .Title | markdownify }}</h1>
			</div>
		</div>
	</header>
	<div class="content">
		<p>
		The thing you are looking for can not be found.
		</p>
		<p>
		<a href="{{ "/" | relURL }}">Home</a>
		</p>
	</div>
</main>
{{ partial "footer.html" . }}