forked from GenomeInformatics/genomeinformatics.github.io
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path404.html
33 lines (30 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Redirecting to https://genomeark.github.io/</title>
<script>
window.onload = function () {
if (window.location.href.includes("vgp.github.io/genomeark/")) {
const redirectLocation = window.location.href.replace(
"vgp.github.io/genomeark/",
"genomeark.github.io/genomeark-all/"
);
document.getElementById("body").innerHTML = "VGP GenomeArk has moved to its own repository.<br/><br/>Redirecting to " + redirectLocation + " ...";
window.location.href = redirectLocation;
}
else if (window.location.href.includes("vgp.github.io/")) {
const redirectLocation = window.location.href.replace(
"vgp.github.io/",
"genomeark.github.io/"
);
document.getElementById("body").innerHTML = "VGP GenomeArk has moved to its own repository.<br/><br/>Redirecting to " + redirectLocation + " ...";
window.location.href = redirectLocation;
}
}
</script>
</head>
<body id="body" style="text-align: center">
GenomeArk moved to https://genomeark.github.io/
</body>
</html>