mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-14 19:26:40 +02:00
36 lines
810 B
HTML
36 lines
810 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>404 - Page not found</title>
|
|
{{ partial "head_includes.html" . }}
|
|
<style>
|
|
.logo {
|
|
vertical-align: middle;
|
|
max-width: 300px;
|
|
}
|
|
.content {
|
|
margin: 3em auto;
|
|
text-align: center;
|
|
}
|
|
.header {
|
|
margin-left: initial;
|
|
margin-right: intial;
|
|
padding: 0 !important;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<img src={{ .Site.Params.logofile }} class="logo" alt="logo"></img>
|
|
<div class="container f04">
|
|
<div class="content">
|
|
<section class="header">
|
|
<div class="name">404</div>
|
|
</section>
|
|
<div class="detail">The page you were looking for does not exist.</div>
|
|
<div class="suggestion"><a href="/">Visit the home page</a></div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|