46 lines
1.3 KiB
HTML
46 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html data-bs-theme="dark" class="sl-theme-dark">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Stationeers IC10 Emulator</title>
|
|
|
|
<meta property="og:title" content="Stationeers IC10 Editor & 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://ic10emu.dev/img/embed_preview.png" />
|
|
<meta property="og:url" content="https://ic10emu.dev/" />
|
|
<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>
|