This repository was archived by the owner on Jan 4, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
54 lines (54 loc) · 1.68 KB
/
404.html
File metadata and controls
54 lines (54 loc) · 1.68 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="0; url=https://m3ue.sparkison.dev">
<link rel="canonical" href="https://m3ue.sparkison.dev" />
<title>Redirecting to New Documentation</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f5f5f5;
}
.container {
text-align: center;
padding: 2rem;
background: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
color: #333;
margin-bottom: 1rem;
}
p {
color: #666;
margin-bottom: 1.5rem;
}
a {
color: #0366d6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Documentation Has Moved</h1>
<p>This documentation site is deprecated.</p>
<p>You will be redirected to the new documentation at <a href="https://m3ue.sparkison.dev">https://m3ue.sparkison.dev</a> in a moment...</p>
<p>If you are not redirected automatically, please <a href="https://m3ue.sparkison.dev">click here</a>.</p>
</div>
<script>
// Backup JavaScript redirect in case meta refresh doesn't work
window.location.href = "https://m3ue.sparkison.dev";
</script>
</body>
</html>