boxcast-playlist/index.html

26 lines
487 B
HTML
Raw Normal View History

2022-04-22 16:56:41 -04:00
<!DOCTYPE html>
<html>
<head></head>
<body>
2022-04-25 10:36:55 -04:00
<div style="max-width:500px; margin: 0 auto;">
2022-04-25 17:23:23 -04:00
<div id="boxcast"></div>
2022-04-25 10:36:55 -04:00
</div>
2022-04-22 16:56:41 -04:00
<script type="module">
const Channel = {
Basics: "sfz7ja3rlpoous6usu8a",
Sunday: "gzahmhugrzogttfdtbjj",
Dev: "r3os2zfdnhlquhuypgtp"
};
2022-04-25 17:23:23 -04:00
import { h, render } from "https://esm.sh/preact";
2022-04-22 16:56:41 -04:00
import App from "./app.js";
render(
2022-04-25 17:23:23 -04:00
h(App, {channel:Channel.Basics, interval:50000}),
document.querySelector("#boxcast")
2022-04-22 16:56:41 -04:00
);
</script>
</body>
</html>