-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.html
83 lines (65 loc) · 2.4 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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<link rel="shortcut icon" href="/static/images/favicon.ico">
<link rel="stylesheet" href="/static/css/main.css">
<link rel="stylesheet" href="/static/css/bootstrap.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<title>SpaceDojo</title>
</head>
<body>
<header>
<nav class="navbar navbar-fixed-top navbar-default alt" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-reveal">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">
<img alt="logo" src="/static/images/sd_logo3.png" class="logo logo-dark">
<img alt="logo" src="/static/images/logo3.png" class="logo logo-light">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar-reveal">
<ul class="nav navbar-nav navbar-right">
<li><a href="#about">About SpaceDojo</a></li>
<li><a href="#faq">FAQ</a></li>
<li><a href="#signup">Sign Up</a></li>
</ul>
</div>
</div>
</nav>
</header>
<script type="text/javascript" charset="utf-8" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
// Add the missing url to the text
$("#url").text(window.location.pathname);
// Fix the css locations dynamically
$("head link").each(function() {
for (var i=0; i<window.location.pathname.split(/\//g).length-2; i++)
$(this).attr("href", "../" + $(this).attr("href"));
});
})
</script>
<p>
Sorry the page <b id="url"></b> could not be found on this server.
</p>
<footer>
<div class="container-fluid">
<div class="text-center">
<p>© SpaceDojo & Josh Owens, 2015.</p>
</div>
</div>
</footer>
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="/static/js/main.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
</body>
</html>