-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
65 lines (65 loc) · 3.11 KB
/
404.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
<!DOCTYPE html>
<html lang="en" style="--purple: #8F84FD; --purple-gray: #686576; --light-gray: #f1f1f1; --gray: #d2d2d2; --dark-gray: #787878; --alt-gray: #767676; --alt-dark-gray: #505050;">
<head>
<script>let write = html => document.currentScript.insertAdjacentHTML('beforebegin', html);</script>
<title>Maideniles - Error: 404 Page Not Found</title>
<meta charset="UTF-8">
<link rel="apple-touch-icon" sizes="120x120" href="/assets/images/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/icons/favicon-16x16.png">
<link rel="manifest" href="/assets/images/icons/site.webmanifest">
<link rel="mask-icon" href="/assets/images/icons/safari-pinned-tab.svg" color="#8f84fd">
<link rel="shortcut icon" href="/assets/images/icons/favicon.ico">
<meta name="msapplication-TileColor" content="#9f00a7">
<meta name="msapplication-config" content="/assets/images/icons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<meta name="description" content="Error: 404 Page Not Found">
<meta name="keywords" content="Error, 404, Page Not Found">
<meta name="author" content="Tim Wasinger">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/assets/libs/css/w3-css-4.0.0.css">
<link rel="stylesheet" href="/assets/libs/css/font-awesome-4.7.0.min.css">
<style>
a {
text-decoration: none;
border-bottom: 1px dotted black;
}
body {
user-select: none;
background-color: var(--gray);
background: linear-gradient(315deg, var(--gray) 0%, #98ABBD 100%);
display: flex;
align-items: center;
justify-content: center;
}
html, body {
height: 100%;
}
.hover-purple-text:hover {
color: var(--purple);
}
.purple-gray-text {
color: var(--purple-gray);
}
.logo {
height: 3em;
}
.w3-card {
border-radius: 25px;
}
</style>
</head>
<body>
<div class="w3-content w3-center">
<div class="w3-hide-medium w3-hide-large"><br><br><br><br><br><br><br><br><br></div>
<h1 class="w3-xxxlarge purple-gray-text w3-padding"><strong><img class="logo w3-grayscale" src="/assets/images/logo.png"><span class="w3-hide-small"> Maideniles.github.io</span><span class="w3-hide-medium w3-hide-large"><br>Maideniles</span></strong></h1>
<div class="w3-padding w3-container w3-responsive">
<div class="w3-card w3-padding w3-white">
<h1 class="w3-xxlarge"><strong>Error:<br>404 Page Not Found <br class="w3-hide-medium w3-hide-large">¯\_(ツ)_/¯</strong></h1>
<script>if(window.location.pathname.includes('404')) write(`<h2 class="w3-medium"><strong><i>This is actually just the 404 error page. False alarm.</i> <br class="w3-hide-medium w3-hide-large">(~ ̄▽ ̄)~</strong></h2>`)</script>
<h2 class="w3-medium">Sorry, the page you are trying reach can not be found. This is likely due to a broken or misspelled link. You can go to the home page <a class="hover-purple-text" href="/" title="Home">here</a>.</h2>
</div>
</div>
</div>
</body>
</html>