hephaestus.x is its own thing — not a subpage of silentmode.st. Previously
the BCNR record redirected straight to code.silentmode.st (dropping visitors
at the login screen cold) or to /hephaestus/ on silentmode.st (which
inherited the full silentmode nav bar of unrelated products).
- New standalone landing at site/hephaestus.x/index.html — its own compact
page, no silentmode.st chrome, just a mark + tagline + three key facts +
"where it lives" spec table, one small "A tool from Silent Mode" footer.
- /forge/index.html and /forgejo/index.html — instant redirects to
code.silentmode.st for users who type hephaestus.x/forge in the bar.
- BCNR record updated to {"s3":"bns/hephaestus.x/"} — navigate.st gateway
serves the content directly from the Sia bucket (same pattern deviant.x
uses). TXID 69686a03c66cc1f661c84c50107a8660055c629f0393c9bb6802773d3c0a7108.
Docs page at silentmode.st/hephaestus/ stays put — that one lives in the
silentmode.st family with its full nav, targeting Silent Mode visitors
exploring the whole stack. hephaestus.x/ is for direct hephaestus visitors.
25 lines
844 B
HTML
25 lines
844 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Hephaestus — opening the forge…</title>
|
|
<meta http-equiv="refresh" content="0;url=https://code.silentmode.st/">
|
|
<link rel="canonical" href="https://code.silentmode.st/">
|
|
<style>
|
|
body{margin:0;background:#0b0e14;color:#e7eaf1;
|
|
font:15px/1.6 system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
|
|
min-height:100vh;display:grid;place-items:center;text-align:center;padding:1rem}
|
|
a{color:#d6ff3d;text-decoration:none}
|
|
a:hover{text-decoration:underline}
|
|
.mark{font-size:44px;line-height:1;margin-bottom:.4rem}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<div class="mark">⚒️</div>
|
|
Opening the forge…<br>
|
|
<a href="https://code.silentmode.st/">code.silentmode.st →</a>
|
|
</div>
|
|
<script>location.replace("https://code.silentmode.st/");</script>
|
|
</body>
|
|
</html>
|