Files
ic10emu/www/src/index.html
Rachel Powers fd114f42fc bind stack and register cell edits
cleanup prep for merge
2024-04-08 13:42:01 -07:00

48 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html data-bs-theme="dark">
<head>
<meta charset="utf-8">
<title>Stationeers IC10 Emulator</title>
<meta property="og:title" content="Stationeers IC10 Editor &amp; Emulator" />
<meta property="og:description"
content="A feature packed code editor for Stationeers IC10 code, paired with a robust debugger and emulator. Edit, test, and share code." />
<meta property="og:image" content="https://ryex.github.io/ic10emu/img/embed_preview.png" />
<meta property="og:url" content="https://ryex.github.io/ic10emu/" />
<link rel="stylesheet" href="./main.css">
<style>
body {
opacity: 0;
}
body.ready {
opacity: 1;
transition: 0.25s opacity;
}
</style>
<script type="module">
await Promise.allSettled([
customElements.whenDefined('ic10emu-app'),
customElements.whenDefined('ace-ic10'),
customElements.whenDefined('vm-ui'),
customElements.whenDefined('vm-ic-controls'),
customElements.whenDefined('vm-ic-registers'),
customElements.whenDefined('vm-ic-stack')
]);
// Button, card, and rating are registered now! Add
// the `ready` class so the UI fades in.
document.body.classList.add('ready');
</script>
</head>
<body class="">
<noscript>This page contains webassembly and javascript content, please enable javascript in your browser.</noscript>
<ic10emu-app></ic10emu-app>
</body>
</html>