20 lines
498 B
Twig
20 lines
498 B
Twig
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="/style.css" />
|
|
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.11"></script>
|
|
<style type="text/css">
|
|
html,
|
|
body {
|
|
overflow: hidden;
|
|
}
|
|
</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 = 'play'</script>
|
|
<script src="/game.js" type="module"></script>
|
|
</body>
|
|
</html>
|