-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
27 lines (23 loc) · 869 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Error 404 :(</title>
<script>
window.onload = function () {
const destination = window.location.href;
if (window.location.href.includes("datproject.github.io/how-dat-works")) {
const redirectLocation = window.location.href.replace(
"datproject.github.io/how-dat-works",
"dat-ecosystem-archive.github.io/how-dat-works"
);
document.getElementById("body").innerHTML = "Dat Project gh-page has been moved to another organization repository!<br/><br/>Redirecting to " + redirectLocation + " ...";
window.location.href = redirectLocation;
}
}
</script>
</head>
<body id="body" style="text-align: center">
Page not found
</body>
</html>