forked from TryGhost/Alto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.hbs
41 lines (35 loc) · 1.37 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
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="shortcut icon" href="{{asset 'favicon.ico'}}">
<link rel="stylesheet" href="{{asset 'css/error.css'}}">
<link rel="stylesheet" href="{{asset 'css/home/cta.css'}}">
<meta http-equiv="cleartype" content="on">
<title>Error {{statusCode}}</title>
</head>
<body>
<main class="dark-mode">
<div class="bg-animation">
<div id="stars"></div>
<div id="stars2"></div>
<div id="stars3"></div>
<div id="stars4"></div>
</div>
<div class="error">
<img class="site-icon" src="{{asset 'images/site-icon-template.png'}}" alt="{{@site.title}}" />
<p class="code">{{statusCode}}</p>
<p class="message">{{message}}</p>
<button class="landing-cta" onclick="window.location.href = '/'">
Back to Home
</button>
</div>
</main>
</body>
</html>