puzzle/templates/game.html.twig

24 lines
544 B
Twig
Raw Normal View History

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