nwo.apocalypse / api.html
CPater's picture
Upload 3 files
9edd497 verified
Raw
History Blame Contribute Delete
1.36 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NWO Apocalypse · API Mission Control</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="https://huggingface.co/spaces/CPater/nwo.apocalypse/resolve/main/phi.png">
<style>
body{margin:0;background:#04060c;color:#fff;font-family:ui-sans-serif,system-ui,sans-serif;
min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center}
.msg{padding:24px}.msg h1{font-weight:200;letter-spacing:.18em;margin-bottom:8px;font-size:22px}
.msg p{color:rgba(255,255,255,.55);font-size:13px;letter-spacing:.06em}
a{color:#33ccff;text-decoration:none}
</style>
</head>
<body>
<div class="msg">
<h1>API mission control moved</h1>
<p>Redirecting to the unified SPA…</p>
<p><a id="link" href="index.html#api">Click here if not redirected</a></p>
</div>
<script>
const path = window.location.pathname;
const dir = path.substring(0, path.lastIndexOf('/') + 1);
const target = window.location.origin + dir + 'index.html#api';
document.getElementById('link').href = target;
try { if (window.top && window.top !== window.self) { window.top.location.replace(target); }
else { window.location.replace(target); } } catch (e) { window.location.replace(target); }
</script>
</body>
</html>