-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.html
More file actions
30 lines (27 loc) · 738 Bytes
/
404.html
File metadata and controls
30 lines (27 loc) · 738 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
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirecting...</title>
<script>
(function () {
var path = window.location.pathname || "/";
var search = window.location.search || "";
var hash = window.location.hash || "";
var repoBase = "/Graiphic-documentation";
if (path.indexOf(repoBase) === 0) {
path = path.slice(repoBase.length);
}
if (!path) {
path = "/";
}
var target = repoBase + "/#" + path + search + hash;
window.location.replace(target);
})();
</script>
</head>
<body>
<p>Redirecting to the documentation shell...</p>
</body>
</html>