puzzle/game/templates/index.html.twig

24 lines
549 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://cdn.jsdelivr.net/npm/vue@2.6.11"></script>
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>
<script type="module">
import Page from "/index.js"
new Vue({
el: '#app',
render: (h) => h(Page, {
props: {
2021-04-20 20:52:31 +02:00
gamesRunning: {{ gamesRunning|json_encode|raw }},
gamesFinished: {{ gamesFinished|json_encode|raw }},
2020-11-25 22:03:35 +01:00
images: {{ images|json_encode|raw }},
},
}),
})
</script>
</body>
</html>