mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
88 lines
3.2 KiB
HTML
88 lines
3.2 KiB
HTML
<!--
|
|
todo
|
|
- fix / consolidate responsive styles
|
|
- standalone video.html
|
|
|
|
-->
|
|
|
|
<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>
|
|
<!-- markdown renderer -->
|
|
<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>
|
|
|
|
|
|
<body class="bg-gray-300 text-gray-800">
|
|
<div id="app"></div>
|
|
|
|
<script type="module">
|
|
import { render, h } from 'https://unpkg.com/preact?module';
|
|
import htm from 'https://unpkg.com/htm?module';
|
|
const html = htm.bind(h);
|
|
import App from './js/app.js';
|
|
|
|
(function () {
|
|
render(html`<${App} />`, document.getElementById("app"));
|
|
})();
|
|
</script>
|
|
|
|
|
|
<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://owncast.online/images/logo.png" />
|
|
<br/>
|
|
<p>
|
|
This <a href="https://owncast.online" target="_blank">Owncast</a> stream requires Javascript to play.
|
|
</p>
|
|
</div>
|
|
</noscript>
|
|
</body>
|
|
</html>
|