-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (33 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Чат Радио-Т</title>
<link rel="stylesheet" href="/app.css">
<link rel="manifest" href="/rt-chat.webmanifest">
<link rel="icon" href="/favicon.ico">
<link rel="icon" type="image/png" href="/images/icon-228x228.png" sizes="228x228">
<link rel="apple-touch-icon" type="image/png" href="/images/icon-228x228.png">
</head>
<body>
<div class="panel" id="panel">
<audio id="stream" class="stream" src="https://stream.radio-t.com"></audio>
<span id="play-stream" class="play-stream play-stream_disabled"></span>
<span class="timer">
<span class="timer__prefix" id="timer__prefix"></span>
<span class="timer__time" id="timer__time"></span>
</span>
<div class="volume" id="volume">
<div class="volume__inner" id="volume__inner"></div>
</div>
</div>
<iframe src="https://gitter.im/radio-t/chat/~embed"></iframe>
<script src="/app.js"></script>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/sw.js');
}
</script>
</body>
</html>