-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 983 Bytes
/
index.html
File metadata and controls
38 lines (38 loc) · 983 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
31
32
33
34
35
36
37
38
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>xbbg docs redirect</title>
<meta http-equiv="refresh" content="0; url=https://xbbg.org/" />
<link rel="canonical" href="https://xbbg.org/" />
<script>
window.location.replace('https://xbbg.org/');
</script>
<style>
body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #0f1117;
color: #f5f7ff;
display: grid;
min-height: 100vh;
place-items: center;
}
main {
max-width: 40rem;
padding: 2rem;
}
a { color: #a5b4fc; }
</style>
</head>
<body>
<main>
<h1>Redirecting to xbbg docs</h1>
<p>
The public docs are served from
<a href="https://xbbg.org/">xbbg.org</a>.
</p>
</main>
</body>
</html>