-
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) · 851 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 851 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" />
<meta http-equiv="refresh" content="0; url=https://fastbcp.arpe.io/docs/latest" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>FastBCP Documentation</title>
<script>
(function () {
var base = "https://fastbcp.arpe.io/docs/latest";
var path = window.location.pathname || "";
var search = window.location.search || "";
var hash = window.location.hash || "";
var target = base + path.replace(/^\\/+/, "") + search + hash;
window.location.replace(target);
})();
</script>
</head>
<body>
<p>
Redirecting to the new FastBCP documentation site at
<a href="https://fastbcp.arpe.io/docs/latest">fastbcp.arpe.io/docs/latest</a>.
</p>
</body>
</html>