site/sirius/index.html
Local Dev 312ec59307 chore(site): redirect /sirius/ to /sirius-x/ so old links land current
The Sirius.X site lives at /sirius-x/ (and, via BCNR, at sirius.x on
Sia). /sirius/ was the pre-Sirius.X page — it stayed live and
divergent from the new site. Users bookmarking /sirius/ (or landing
via an old link) were seeing the old page and reasonably assuming
nothing worked, because none of the new dropdown / register modal /
inline search is on it.

Both /sirius/index.html and /sirius/register.html are now client-side
redirects to /sirius-x/. register.html preserves ?q= and lands on
/sirius-x/#search-input so old label-in-URL bookmarks still open the
merged landing search at the right spot. Meta-refresh fallback
handles JS-off. rel=canonical points at /sirius-x/.
2026-09-08 02:08:04 +02:00

29 lines
1.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Redirecting to Sirius.X</title>
<meta name="robots" content="noindex">
<!-- Old /sirius/ page — superseded by the Sirius.X site at /sirius-x/.
Preserves any ?q= or hash so old bookmarks still land in the right
spot. Meta-refresh is a fallback for JS-off. -->
<meta http-equiv="refresh" content="0; url=/sirius-x/">
<link rel="canonical" href="/sirius-x/">
<script>location.replace("/sirius-x/" + location.search + location.hash);</script>
<style>
body{margin:0;font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
background:#0b0e14;color:#8b98a9;min-height:100vh;
display:flex;align-items:center;justify-content:center;padding:2rem;text-align:center}
a{color:#d6ff3d}
.mark{font-size:40px;line-height:1;margin-bottom:.6rem}
</style>
</head>
<body>
<div>
<div class="mark"></div>
<p>Redirecting to <a href="/sirius-x/">Sirius.X</a></p>
<p style="font-size:12.5px;color:#5e6678;margin-top:1rem">The Sirius page moved to /sirius-x/.</p>
</div>
</body>
</html>