2020-09-22 06:11:09 +03:00
|
|
|
<!DOCTYPE html>
|
2020-10-03 23:50:08 +03:00
|
|
|
<html lang="en">
|
2020-08-24 05:38:58 +03:00
|
|
|
<head>
|
2020-10-03 23:50:08 +03:00
|
|
|
<title>Owncast</title>
|
2020-08-24 05:38:58 +03:00
|
|
|
<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">
|
2020-09-20 20:03:54 +03:00
|
|
|
|
2020-08-24 05:38:58 +03:00
|
|
|
<meta name="msapplication-TileColor" content="#ffffff">
|
|
|
|
<meta name="msapplication-TileImage" content="/img/favicon/ms-icon-144x144.png">
|
|
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
|
2020-10-05 04:43:31 +03:00
|
|
|
<link href="/js/web_modules/tailwindcss/dist/tailwind.min.css" rel="stylesheet" />
|
2020-08-24 05:38:58 +03:00
|
|
|
|
2020-10-05 04:43:31 +03:00
|
|
|
<link href="/js/web_modules/videojs/dist/video-js.min.css" rel="stylesheet"/>
|
|
|
|
<link href="/js/web_modules/@videojs/themes/fantasy/index.css" rel="stylesheet" />
|
2020-08-26 10:51:40 +03:00
|
|
|
|
2020-08-24 05:38:58 +03:00
|
|
|
<link href="./styles/video.css" rel="stylesheet" />
|
|
|
|
<link href="./styles/chat.css" rel="stylesheet" />
|
|
|
|
<link href="./styles/user-content.css" rel="stylesheet" />
|
2020-08-24 13:30:42 +03:00
|
|
|
<link href="./styles/app.css" rel="stylesheet" />
|
2020-08-24 05:38:58 +03:00
|
|
|
</head>
|
2020-10-05 04:43:31 +03:00
|
|
|
|
2020-09-22 06:11:09 +03:00
|
|
|
<body class="scrollbar-hidden bg-gray-300 text-gray-800">
|
2020-08-26 10:51:40 +03:00
|
|
|
<div id="app"></div>
|
2020-06-21 09:41:13 +03:00
|
|
|
|
2020-08-26 10:51:40 +03:00
|
|
|
<script type="module">
|
2020-10-05 04:43:31 +03:00
|
|
|
import { h, render } from '/js/web_modules/preact.js';
|
|
|
|
import htm from '/js/web_modules/htm.js';
|
|
|
|
const html = htm.bind(h);
|
|
|
|
|
2020-08-26 10:51:40 +03:00
|
|
|
import App from './js/app.js';
|
2020-08-24 05:38:58 +03:00
|
|
|
render(html`<${App} />`, document.getElementById("app"));
|
2020-08-26 10:51:40 +03:00
|
|
|
</script>
|
2020-08-13 07:56:41 +03:00
|
|
|
|
2020-08-26 10:51:40 +03:00
|
|
|
<noscript>
|
|
|
|
<style>
|
|
|
|
.noscript {
|
|
|
|
text-align: center;
|
|
|
|
padding: 30px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2020-08-24 05:38:58 +03:00
|
|
|
|
2020-08-26 10:51:40 +03:00
|
|
|
.noscript a {
|
|
|
|
display: inline;
|
|
|
|
color: blue;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div class="noscript">
|
|
|
|
<img src="https://owncast.online/images/logo.png" />
|
|
|
|
<br/>
|
|
|
|
<p>
|
2020-10-03 23:50:08 +03:00
|
|
|
This <a href="https://owncast.online" rel="noopener noreferrer" target="_blank">Owncast</a> stream requires Javascript to play.
|
2020-08-26 10:51:40 +03:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</noscript>
|
|
|
|
</body>
|
2020-08-13 07:56:41 +03:00
|
|
|
</html>
|