-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
61 lines (56 loc) · 1.76 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
50
51
52
53
54
55
56
57
58
59
60
61
<html>
<head>
<title>NTS live</title>
<link rel="stylesheet" href="./css/normalize.css" />
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<!-- Stream 1 contents -->
<div id="stream-1" class="active-1">
<div class="channel-and-time-wrapper">
<div class="panel channel-and-time">
<div class="channel">1</div>
<div class="header-content">
<span class="live-now">
LIVE
<span class="flashing-light"></span>
</span>
<span id="stream-1-time">LOADING...</span>
</div>
</div>
</div>
<div class="location-and-name">
<div class="location-block-wrapper">
<span id="stream-1-location" class="panel location">LOADING...</span>
</div>
<span id="stream-1-name" class="name">LOADING...</span>
</div>
</div>
<!-- Stream 2 contents -->
<div id="stream-2" class="inactive-2">
<div class="channel-and-time-wrapper">
<div class="panel channel-and-time">
<div class="channel">2</div>
<div class="header-content">
<span class="live-now">
LIVE
<span class="flashing-light"></span>
</span>
<span id="stream-2-time">LOADING...</span>
</div>
</div>
</div>
<div class="location-and-name">
<div class="location-block-wrapper">
<span id="stream-2-location" class="panel location">LOADING...</span>
</div>
<span id="stream-2-name" class="name">LOADING...</span>
</div>
</div>
<!-- <div id="vignette" /> -->
<audio id="audio-player" src=""></audio>
<script>
require("./js/index.js");
</script>
</body>
</html>