You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
3.0 KiB
77 lines
3.0 KiB
<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> |
|
<script src="//unpkg.com/showdown/dist/showdown.min.js"></script> |
|
|
|
<link href="./styles/layout.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, html } from "https://unpkg.com/htm/preact/index.mjs?module"; |
|
import App from './js/app2.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://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> |
|
</body> |
|
</html>
|
|
|