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

404.html « layouts - github.com/cfrome77/hugo-theme-sky.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cbe40f3be20b4bf3df46ee78b7a6cbd2de749c69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
	<head>
		<title> {{ .Site.Title }} </title> 

		{{ partial "head.html" . }}

	</head>
	<body>
		{{ partial "header.html" . }}
		<div class="container wrapper">
			<h1>Uhm... WHAT?</h1>
			<div class="post-content">
				<p>Looks like you're lost. This page doesn't exist</p>
			</div>
			<div class="push"></div>
		</div>
		{{ partial "footer.html" . }}
	</body>
</html>