comparison index.html @ 2:78c1a2983010

rewrite UI and file serving parts; use vite
author drewp@bigasterisk.com
date Mon, 20 Mar 2023 20:26:02 -0700
parents 3f2da406c788
children
comparison
equal deleted inserted replaced
1:f036a4955ad2 2:78c1a2983010
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="shaka-player/dist/shaka-player.compiled.debug.js"></script> 4 <title>video on bigasterisk</title>
5 <script type="module" src="build/bundle.js"></script> 5 <link rel="stylesheet" type="text/css" media="screen" href="src/main.css" />
6 <style> 6 <script type="module" src="src/main.ts"></script>
7 body {
8 margin: 0;
9 height: 100vh;
10 background: radial-gradient(
11 ellipse at center,
12 #162c4a 0%,
13 #0c2236 36%,
14 #020f16 100%
15 );
16 }
17
18 </style>
19 </head> 7 </head>
20 <body> 8 <body>
21 <video-page></video-page> 9 <video-page></video-page>
22 </body> 10 </body>
23 </html> 11 </html>