-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 897 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 897 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Redirecting…</title>
<link rel="canonical" href="https://immunomind.github.io/docs/" />
<meta http-equiv="refresh" content="0; url=https://immunomind.github.io/docs/" />
<meta name="robots" content="noindex" />
</head>
<body>
<noscript>
<p>Redirecting to <a href="https://immunomind.github.io/docs/">https://immunomind.github.io/docs/</a>…</p>
</noscript>
<script>
(function () {
const target = new URL("https://immunomind.github.io/docs/");
// preserve query params and hash if someone linked with them
if (location.search) target.search = location.search;
if (location.hash) target.hash = location.hash;
// replace avoids back-button loops
location.replace(target.toString());
})();
</script>
</body>
</html>