23 lines
549 B
Twig
23 lines
549 B
Twig
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="/style.css" />
|
|
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.11"></script>
|
|
<title>🧩 jigsaw.hyottoko.club</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module">
|
|
import Page from "/index.js"
|
|
new Vue({
|
|
el: '#app',
|
|
render: (h) => h(Page, {
|
|
props: {
|
|
gamesRunning: {{ gamesRunning|json_encode|raw }},
|
|
gamesFinished: {{ gamesFinished|json_encode|raw }},
|
|
images: {{ images|json_encode|raw }},
|
|
},
|
|
}),
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|