puzzle/game/templates/game.html.twig

17 lines
326 B
Twig
Raw Normal View History

2020-11-25 22:03:35 +01:00
<html>
<head>
<link rel="stylesheet" href="/style.css" />
<style type="text/css">
html,
body {
overflow: hidden;
}
</style>
</head>
<body>
<script>window.GAME_ID = '{{GAME_ID}}'</script>
<script>window.WS_ADDRESS = '{{WS_ADDRESS}}'</script>
<script src="/game.js" type="module"></script>
</body>
</html>