23 lines
522 B
Twig
23 lines
522 B
Twig
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="/style.css" />
|
|
<script src="https://unpkg.com/vue@3.0.11"></script>
|
|
<style type="text/css">
|
|
html,
|
|
body {
|
|
overflow: hidden;
|
|
}
|
|
canvas {
|
|
cursor: grab;
|
|
}
|
|
</style>
|
|
<title>🧩 jigsaw.hyottoko.club</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script>window.GAME_ID = '{{GAME_ID}}'</script>
|
|
<script>window.WS_ADDRESS = '{{WS_ADDRESS}}'</script>
|
|
<script>window.MODE = 'replay'</script>
|
|
<script src="/game.js" type="module"></script>
|
|
</body>
|
|
</html>
|