-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.html
More file actions
26 lines (26 loc) · 932 Bytes
/
Copy path404.html
File metadata and controls
26 lines (26 loc) · 932 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page not found</title>
<script>
// Only redirect /goose/* paths to goose-docs.ai
// Leave all other block.github.io paths alone
var path = window.location.pathname;
if (path === '/goose' || path.indexOf('/goose/') === 0) {
var subpath = path.replace(/^\/goose/, '');
var dest = 'https://goose-docs.ai' + subpath + window.location.search + window.location.hash;
window.location.replace(dest);
}
</script>
<style>
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; max-width: 600px; margin: 80px auto; padding: 0 20px; text-align: center; color: #333; }
h1 { font-size: 2em; }
a { color: #0969da; }
</style>
</head>
<body>
<h1>404 — Page not found</h1>
<p>Looking for goose? It's moved to <a href="https://goose-docs.ai">goose-docs.ai</a>.</p>
</body>
</html>