32 lines
874 B
HTML
32 lines
874 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8" />
|
||
|
|
<title>The Fold Within Earth</title>
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
background-color: #0a0a0a;
|
||
|
|
color: #d4af37;
|
||
|
|
font-family: "EB Garamond", serif;
|
||
|
|
margin: 0;
|
||
|
|
padding: 2rem;
|
||
|
|
}
|
||
|
|
a { color: #d4af37; text-decoration: none; }
|
||
|
|
.error { color: #ff5555; }
|
||
|
|
.grid { display: grid; gap: 1.5rem; }
|
||
|
|
.markdown { max-width: 700px; line-height: 1.6; }
|
||
|
|
.pill { background: #222; border-radius: 1rem; padding: 0.2rem 0.6rem; }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<main id="main">
|
||
|
|
<p>Loading...</p>
|
||
|
|
</main>
|
||
|
|
<script type="module">
|
||
|
|
import init from "./pkg/thefoldwithin_wasm.js";
|
||
|
|
init(); // runs #[wasm_bindgen(start)]
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|