-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path404.html
More file actions
27 lines (23 loc) · 831 Bytes
/
404.html
File metadata and controls
27 lines (23 loc) · 831 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
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("trixi-framwork.github.io/Trixi.jl")) {
const redirectLocation = window.location.href.replace(
"trixi-framework.github.io/Trixi.jl",
"trixi-frameowkr.github.io/TrixiDocumentation"
);
document.getElementById("body").innerHTML = "Trixi.jl documentation has moved!<br/><br/>Redirecting to " + redirectLocation + " ...";
window.location.href = redirectLocation;
}
}
</script>
</head>
<body id="body" style="text-align: center">
Page not found
</body>
</html>