hugo-book/layouts/404.html

35 lines
650 B
HTML
Raw Normal View History

2018-11-25 12:34:00 +00:00
<!DOCTYPE html>
2019-04-23 21:02:06 +00:00
<html lang="{{ .Site.Language.Lang }}">
2018-09-05 14:22:04 +00:00
<head>
{{ partial "docs/html-head" . }}
{{ partial "docs/inject/head" . }}
2020-04-15 21:24:51 +00:00
<style>
.not-found {
text-align: center;
}
.not-found h1 {
margin: .25em 0 0 0;
opacity: .25;
font-size: 40vmin;
}
</style>
</head>
2018-11-25 12:30:25 +00:00
<body>
2020-04-15 21:24:51 +00:00
<main class="flex justify-center not-found">
<div>
2020-04-15 21:24:51 +00:00
<h1>404</h1>
<h2>Page Not Found</h2>
<h3>
<a href="{{ .Site.Home.RelPermalink }}">{{ .Site.Title }}</a>
</h3>
</div>
</main>
2018-11-25 12:34:00 +00:00
{{ partial "docs/inject/body" . }}
</body>
2018-11-25 12:34:00 +00:00
2020-04-15 21:24:51 +00:00
</html>