-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
56 lines (40 loc) · 1.46 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
<!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, initial-scale=1">
<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>Meteor Space Camp</title>
</head>
<body>
<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>© Meteor Club & 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>