-
Notifications
You must be signed in to change notification settings - Fork 0
/
error-404.hbs
29 lines (28 loc) · 1022 Bytes
/
error-404.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
{{!--
This error template is used for all 404 errors, which might occur on your site.
It's a good idea to keep this template as minimal as possible in terms of both file size and complexity.
--}}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>{{meta_title}}</title>
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="{{asset "css/screen.css"}}" />
</head>
<body class="error-template">
<div class="site-wrapper">
{{> "site-nav"}}
<main id="site-main" class="site-main outer" role="main">
<div class="inner">
<section class="error-message">
<h1 class="error-code">{{error.statusCode}}</h1>
<p class="error-description">{{message}}</p>
</section>
</div>
</main>
</div>
</body>
</html>