-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
26 lines (23 loc) · 884 Bytes
/
404.html
File metadata and controls
26 lines (23 loc) · 884 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>genesis.re - wiki redirect</title>
</head>
<body>
<noscript>
Please enable JavaScript for a proper redirect.
For now please navigate manually <a href="https://gen.miraheze.org">gen.miraheze.org</a>
<h3>JavaScript code on this website is relatively harmless</h3>
<p>Using redirects untill I properly setup https:// on the subdomain, waiting for certificate at the moment</p>
<pre>var baseURL = "https://gen.miraheze.org/wiki/";
var hash = location.hash.substr(1); // removing initial # (getting substring from position 1)
location = baseURL + hash;</pre>
</noscript>
<script>
var baseURL = "https://gen.miraheze.org/wiki/";
var hash = location.hash.substr(1); // removing initial # (getting substring from position 1)
location = baseURL + hash;
</script>
</body>
</html>