proper fun 404 page!
This commit is contained in:
parent
7e09edd11e
commit
b03b35cb68
91
404.html
91
404.html
@ -1,25 +1,78 @@
|
|||||||
---
|
---
|
||||||
permalink: /404.html
|
permalink: /404.html
|
||||||
layout: default
|
layout: null
|
||||||
---
|
---
|
||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>!!CRASH!!</title>
|
||||||
|
<link rel="stylesheet" href="/assets/css/styles.css">
|
||||||
|
<style>
|
||||||
|
body, html {
|
||||||
|
background-color: #0000cc;
|
||||||
|
color: white;
|
||||||
|
font-size: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
<style type="text/css" media="screen">
|
a {
|
||||||
.container {
|
color: white;
|
||||||
margin: 10px auto;
|
text-decoration: none;
|
||||||
max-width: 600px;
|
}
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
margin: 30px 0;
|
|
||||||
font-size: 4em;
|
|
||||||
line-height: 1;
|
|
||||||
letter-spacing: -1px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<div class="container">
|
a:hover {
|
||||||
<h1>404</h1>
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
<p><strong>Page not found :(</strong></p>
|
.center {
|
||||||
<p>The requested page could not be found.</p>
|
position: fixed;
|
||||||
</div>
|
flex-direction: column;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<script data-goatcounter="https://slimepondcount.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
|
||||||
|
|
||||||
|
<img src="/assets/images/crt1.png" class="overlay">
|
||||||
|
<div class="center">
|
||||||
|
<p>Your PC has encountered an unexpected error<br>
|
||||||
|
You are the <span id="crashcount">err</span> user to crash the computer<br>
|
||||||
|
idiot
|
||||||
|
</p>
|
||||||
|
<a href="/">reboot</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
function ordinal_suff(i) {
|
||||||
|
let j = i % 10,
|
||||||
|
k = i % 100;
|
||||||
|
|
||||||
|
if (j === 1 && k !== 11) {
|
||||||
|
out = i + "st";
|
||||||
|
}
|
||||||
|
else if (j === 2 && k !== 12) {
|
||||||
|
out = i + "nd";
|
||||||
|
}
|
||||||
|
else if (j === 3 && k !== 13) {
|
||||||
|
out = i + "rd";
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
out = i + "th";
|
||||||
|
}
|
||||||
|
|
||||||
|
return out;
|
||||||
|
}
|
||||||
|
|
||||||
|
var r = new XMLHttpRequest();
|
||||||
|
r.addEventListener('load', function() {
|
||||||
|
document.querySelector('#crashcount').innerText =
|
||||||
|
ordinal_suff(JSON.parse(this.responseText).count)
|
||||||
|
})
|
||||||
|
r.open('GET', 'https://slimepondcount.goatcounter.com/counter//404.json')
|
||||||
|
r.send()
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
@ -63,3 +63,9 @@ img {
|
|||||||
max-height: 7vh;
|
max-height: 7vh;
|
||||||
min-height: 32px;
|
min-height: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.center {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
14
not_found.html
Normal file
14
not_found.html
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>pre not found</title>
|
||||||
|
<link rel="stylesheet" href="/assets/css/styles.css">
|
||||||
|
<meta http-equiv="refresh" content="0; url='/404'" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>hey bud the site isnt found<br>
|
||||||
|
you should be redirected <a href="/404">here</a><br>
|
||||||
|
this is set up this way for the funny stattracker
|
||||||
|
</p>
|
||||||
|
</body>
|
Loading…
x
Reference in New Issue
Block a user