forked from NuGuardAI/xelo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
24 lines (21 loc) · 694 Bytes
/
404.html
File metadata and controls
24 lines (21 loc) · 694 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Xelo – redirecting…</title>
<script>
// GitHub Pages doesn't redirect /Xelo → /Xelo/ automatically in all cases.
// This 404 page catches that and sends visitors to the right place.
var path = window.location.pathname;
if (path === '/Xelo' || path === '/Xelo/') {
window.location.replace('/Xelo/docs/');
} else {
window.location.replace('/Xelo/docs/');
}
</script>
<meta http-equiv="refresh" content="0; url=/Xelo/docs/">
</head>
<body>
<p>Page not found. Redirecting to <a href="/Xelo/docs/">Xelo docs</a>…</p>
</body>
</html>