forked from zentel/arqblogtemp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.hbs
64 lines (56 loc) · 2.98 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]-->
<!--[if (gte IE 9)| IEMobile |!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>{{code}} — {{message}}</title>
<meta name="description" content="{{siteDescription}}">
<meta name="author" content="">
<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"}}">
<meta http-equiv="cleartype" content="on">
<link rel="stylesheet" type='text/css' href='//fonts.googleapis.com/css?family=Open+Sans:400,300,700'>
<link rel="stylesheet" href="{{asset "css/style.css" }}" />
<link rel="stylesheet" type="text/css" href="{{asset "css/header-full.css"}}" />
{{{block "pageStyles"}}}
</head>
<body class="{{bodyClass}}">
<main role="main" class="site-head" {{#if @blog.cover}}style="background-image: url({{@blog.cover}})"{{/if}} >
<div class="vertical">
<div data-animate="fadeDown" class="site-head-content inner">
<h1 class="blog-code-error">{{code}} :(</h1>
<h2>{{message}}</h2>
<br><br>
<a class="blog-beck-error" href="{{@blog.url}}/#blog">Back to all post</a>
</div>
</div>
{{#if stack}}
<section class="error-stack">
<h3>Stack Trace</h3>
<p><strong>{{message}}</strong></p>
<ul class="error-stack-list">
{{#foreach stack}}
<li>
at
{{#if function}}<em class="error-stack-function">{{function}}</em>{{/if}}
<span class="error-stack-file">({{at}})</span>
</li>
{{/foreach}}
</ul>
</section>
{{/if}}
</main>
{{ghost_foot}}
<script type="text/javascript" src="{{asset "js/jquery.fitvids.js"}}"></script>
<script type="text/javascript" src="{{asset "js/displayScript.js"}}"></script>
<script type="text/javascript" src="{{asset "js/postScript.js"}}"></script>
<script type="text/javascript" src="{{asset "js/optimizeGrid.js"}}"></script>
<script type="text/javascript" src="{{asset "js/scrollScript.js"}}"></script>
<script type="text/javascript" src="{{asset "js/index.js"}}"></script>
<script type="text/javascript" src="{{asset "js/demo-picker.js"}}"></script>
</body>
</html>