-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy patherror.html
39 lines (38 loc) · 1.32 KB
/
error.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>404: JS Bin not found</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="{{static}}/css/static-page.css?{{version}}">
</head>
<body>
<img id="dave" src="{{static}}/images/dave.min.svg?{{version}}" alt="Dave, the JS Bin bot">
<div class="wrapper">
{{#if is_404}}
<h1>This page isn't here :-(</h1>
<p>How about heading back to the <a href="{{root}}">homepage</a>
instead? It's nice there and there are lots of things to click on.</p>
<p>If you think there is supposed to be something here that isn't
let us know via the <a href="http://github.com/jsbin/jsbin/issues">Issues page</a>.</p>
{{/if}}
{{#if is_500}}
<h1>Something went wrong!</h1>
<p>But don't worry we're probably on the case. In the
meantime you could try refreshing the page, if that doesn't work
let us know by creating an issue on the <a href="http://github.com/jsbin/jsbin/issues">issues page</a>.</p>
<!--
{{err}}
{{stack}}
-->
{{/if}}
{{#if is_500}}
<details>
<summary>The error: {{err}}</summary>
<pre>{{request.method}} {{request.url}}
{{stack}}</pre>
</details>
{{/if}}
</div>
</body>
</html>