mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-26 22:40:03 +03:00
24 lines
453 B
HTML
24 lines
453 B
HTML
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="abstreet.css">
|
|
</head>
|
|
<body>
|
|
|
|
<script type="module">
|
|
import { Santa } from "./santa/santa.bundle.js";
|
|
let app = new Santa("app");
|
|
|
|
document.addEventListener("DOMContentLoaded", function(event) {
|
|
app.loadAndStart();
|
|
});
|
|
</script>
|
|
|
|
<div class="widgetry-app full-screen-widgetry-app" id="app">
|
|
<div class="preloading">
|
|
<h1>Fifteen Minute Santa</h1>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|