we don't need viewer.js anymore

This commit is contained in:
Charlotte Som 2026-03-11 00:08:24 +00:00
parent c7dd1f9a3d
commit 24fe365890

View file

@ -32,9 +32,20 @@
<body> <body>
<main> <main>
<div id="player"></div> <div id="player">
</main> {{{ if videoUrl }}
<video crossorigin="anonymous" controls>
<source src="{{ videoUrl }}" />
</video>
{{ /if }}
<script src="/dist/viewer.js" type="module"></script> {{ if title }}
<h1>{{ title }}</h1>
{{ /if }}
{{ if description }}
<p class="description">{{ description }}</p>
{{ /if }}
</div>
</main>
</body> </body>
</html> </html>