2020-08-24 04:38:58 +02:00
|
|
|
<!--
|
|
|
|
todo
|
|
|
|
- fix / consolidate responsive styles
|
|
|
|
- standalone video.html
|
2020-07-20 07:27:42 +02:00
|
|
|
|
2020-08-24 04:38:58 +02:00
|
|
|
-->
|
2020-07-21 07:03:02 +02:00
|
|
|
|
2020-08-24 04:38:58 +02:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
|
|
|
|
|
|
|
|
<link rel="apple-touch-icon" sizes="57x57" href="/img/favicon/apple-icon-57x57.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="60x60" href="/img/favicon/apple-icon-60x60.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="72x72" href="/img/favicon/apple-icon-72x72.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="76x76" href="/img/favicon/apple-icon-76x76.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="114x114" href="/img/favicon/apple-icon-114x114.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="120x120" href="/img/favicon/apple-icon-120x120.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="144x144" href="/img/favicon/apple-icon-144x144.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="152x152" href="/img/favicon/apple-icon-152x152.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/img/favicon/apple-icon-180x180.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="192x192" href="/img/favicon/android-icon-192x192.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon/favicon-32x32.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="96x96" href="/img/favicon/favicon-96x96.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon/favicon-16x16.png">
|
|
|
|
<link rel="manifest" href="/manifest.json">
|
|
|
|
<meta name="msapplication-TileColor" content="#ffffff">
|
|
|
|
<meta name="msapplication-TileImage" content="/img/favicon/ms-icon-144x144.png">
|
|
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
|
|
|
|
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet" />
|
|
|
|
|
|
|
|
<link href="//unpkg.com/video.js@7.9.2/dist/video-js.css" rel="stylesheet">
|
|
|
|
<link href="https://unpkg.com/@videojs/themes@1/dist/fantasy/index.css" rel="stylesheet" />
|
|
|
|
<script src="//unpkg.com/video.js@7.9.2/dist/video.js"></script>
|
2020-08-24 06:23:16 +02:00
|
|
|
<!-- markdown renderer -->
|
2020-08-24 04:38:58 +02:00
|
|
|
<script src="//unpkg.com/showdown/dist/showdown.min.js"></script>
|
|
|
|
|
|
|
|
<link href="./styles/app.css" rel="stylesheet" />
|
|
|
|
<link href="./styles/video.css" rel="stylesheet" />
|
|
|
|
<link href="./styles/chat.css" rel="stylesheet" />
|
|
|
|
<link href="./styles/user-content.css" rel="stylesheet" />
|
|
|
|
|
|
|
|
</head>
|
2020-06-21 08:41:13 +02:00
|
|
|
|
2020-06-16 00:45:55 +02:00
|
|
|
|
2020-06-15 08:12:58 +02:00
|
|
|
<body class="bg-gray-300 text-gray-800">
|
2020-08-24 04:38:58 +02:00
|
|
|
<div id="app"></div>
|
2020-07-20 00:14:51 +02:00
|
|
|
|
2020-08-06 19:55:33 +02:00
|
|
|
<script type="module">
|
2020-08-24 04:38:58 +02:00
|
|
|
import { render, html } from "https://unpkg.com/htm/preact/index.mjs?module";
|
2020-08-24 06:23:16 +02:00
|
|
|
import App from './js/app.js';
|
2020-08-06 19:55:33 +02:00
|
|
|
|
2020-08-24 04:38:58 +02:00
|
|
|
(function () {
|
|
|
|
render(html`<${App} />`, document.getElementById("app"));
|
|
|
|
})();
|
2020-07-16 21:17:05 +02:00
|
|
|
</script>
|
2020-07-19 02:44:18 +02:00
|
|
|
|
2020-08-13 06:56:41 +02:00
|
|
|
|
2020-08-24 04:38:58 +02:00
|
|
|
<noscript>
|
|
|
|
<style>
|
|
|
|
.noscript {
|
|
|
|
text-align: center;
|
|
|
|
padding: 30px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noscript a {
|
|
|
|
display: inline;
|
|
|
|
color: blue;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div class="noscript">
|
|
|
|
<img src="https://github.com/gabek/owncast/raw/master/doc/logo.png" />
|
|
|
|
<br/>
|
|
|
|
<p>
|
|
|
|
This <a href="https://github.com/gabek/owncast" target="_blank">Owncast</a> stream requires Javascript to play.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</noscript>
|
2020-06-04 10:31:47 +02:00
|
|
|
</body>
|
2020-08-13 06:56:41 +02:00
|
|
|
</html>
|