-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (48 loc) · 1.55 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="tufte.css"/>
<link rel="stylesheet" href="latex.css"/>
<link rel="stylesheet" href="styles.css">
<script ype="text/javascript" src="script.js"></script>
<title>żywe radio</title>
</head>
<body>
<div id="content">
<div id="page">
<h1><b>Ż y w e</b></h1>
<h2>Instruction</h2>
<p>Click on a 'play' button below and soon enough you will hear the music.
<br>
<audio id="player">
<source src="${YOUR_HOST}:8000/radio" type="audio/mp3">
</audio>
<button id="play-button" onclick="onPlayClick()">Play</button>
<p id="info"></p>
<p id="alert" style="color: red;"></p>
<h2>Upcoming shows</h2>
<ul>
<li>22-03-2020 20:00 GMT+1 - Example Show</li>
</ul>
<div class="FixedHeightContainer">
<h2>Past shows</h2>
<div class="Content">
<ul>
<li>14-03-2020 18:00 GMT+1 - Example Past Show</li>
</ul>
</div>
</div>
</div>
</div>
<section id="chat-section">
<button id="chat-toggle" onclick="onChatToggleClick()">OPEN CHAT</button>
<iframe class="hidden"
id="chat"
src="https://minnit.chat/${YOUR_CHAT}?embed&transparent&language=en&nickname=" width='300' height='400' style="border:none;" allowTransparency="true"></iframe>
</section>
<script>
window.setInterval(getStatus, 10000);
</script>
</body>
</html>