devroom.io/themes/cocoa-eh/layouts/404.html

24 lines
644 B
HTML
Raw Normal View History

2017-10-16 13:33:26 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>404 - Page not found</title>
{{ partial "head_includes.html" . }}
<style>
{{ partial "css/404.css" . | safeCSS }}
</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>