puzzle/templates/replay.html.twig

30 lines
619 B
Twig
Raw Normal View History

2020-12-22 22:35:09 +01:00
<html>
<head>
<link rel="stylesheet" href="/style.css" />
<script src="https://unpkg.com/vue@3.0.11"></script>
2020-12-22 22:35:09 +01:00
<style type="text/css">
html,
body {
overflow: hidden;
}
canvas {
cursor: grab;
}
2021-05-13 16:25:31 +02:00
canvas.loaded {
cursor: grab;
}
2020-12-22 22:35:09 +01:00
</style>
<title>🧩 jigsaw.hyottoko.club</title>
</head>
<body>
<div id="app"></div>
2020-12-22 22:35:09 +01:00
<script>window.GAME_ID = '{{GAME_ID}}'</script>
<script>window.WS_ADDRESS = '{{WS_ADDRESS}}'</script>
<script>window.MODE = 'replay'</script>
<script type="module">
import main from '/game.js'
main(document.getElementById('app'))
</script>
2020-12-22 22:35:09 +01:00
</body>
</html>