luk3yx.github.io/error.html

28 lines
582 B
HTML
Raw Permalink Normal View History

---
layout: compress
---
2018-01-09 16:35:33 -08:00
<!DOCTYPE html>
<title>Redirecting...</title>
<h1>Redirecting...</h1>
<p>If you are not redirected, please make sure JavaScript is enabled.</p>
<script>
switch(window.location.hash) {
case '#404':
case '#e404':
a = '404.html';
2018-01-09 16:37:50 -08:00
break;
case '#410':
case '#e410':
a = '410.html';
2018-01-09 16:37:50 -08:00
break;
case '#gameover':
a = 'gameover.html';
2018-01-09 16:37:50 -08:00
break;
default:
a = '418.html';
2018-01-09 16:37:50 -08:00
break;
}
window.location.href = a;
</script>