This repository was archived by the owner on Nov 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
50 lines (50 loc) · 1.46 KB
/
404.html
File metadata and controls
50 lines (50 loc) · 1.46 KB
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
<!--
---
permalink: /404.html
---
-->
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/res/global/styles.css">
<link rel="shortcut icon" type="image/png" href="/res/media/images/favicon.png"/>
<title>DusterTheFirst</title>
<script src="/res/global/jquery-3.1.1.js"></script>
<style>
#fourofour{
position: absolute;
top: 3em;
left 0;
right: 0;
bottom: 0;
width: 100%;
}
#msg{
margin: 20px;
color: firebrick;
}
#help{
color: grey;
}
</style>
</head>
<body>
<!-- HEADER-->
<div id="header"></div>
<div id="headerspacer" class="desktop"> </div>
<div id="headerspacer" class="mobile"> </div>
<script src="/res/include/headerinclude.js"></script>
<!-- /HEADER-->
<div id="fourofour">
<div id="msg">
<h1>404</h1>
<h1>Page not found</h1>
</div>
<div id="help">
<span id="page"></span> is not on this webserver, check your spelling and try again
</div>
<script>$("#page").text(window.location.pathname)</script>
</div>
</body>
</html>