Files
cocoa-eh-hugo-theme/layouts/404.html
Michael Noronha a7cde56381 Update 404.html
2017-08-04 00:31:09 -04:00

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>