forked from Kikobeats/uno-zen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.hbs
executable file
·37 lines (37 loc) · 1.13 KB
/
error.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html style="background: url({{@blog.cover}}) center/cover no-repeat fixed">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>404, Houston, we have a problem</title>
{{> meta}}
<link rel="stylesheet" type="text/css" href="{{asset "css/uno-zen.css"}}" />
{{ghost_head}}
</head>
<body>
<article>
<section>
<div class="astro-wrap">
<a class="astronaut" href="#" title="return to base"></a>
</div>
<div class="mayday">
<h2>
Houston, we've got a problem. <br>
Houston, 404 error appeared.
</h2>
<hr class="divider short">
<h2>
What happens now?
</h2>
</div>
<div class="astro-options">
<a id="panic-button" class="btn small" href="#">Panic button</a>
<a id="safe-button" class="btn small" href="/#open">Safe button</a>
</div>
</section>
</article>
{{ghost_foot}}
<script type="text/javascript" src="{{asset "js/uno-zen.js"}}"></script>
{{> google-analytics}}
</body>
</html>