-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 2.74 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
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>reLive</title>
<meta name="viewport" content="width=device-width">
<link rel="shortcut icon" sizes="16x16 24x24 32x32 48x48" href="images/app.ico">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,600">
<link rel="stylesheet" href="styles.css">
<script src="scripts/version.js"></script>
<script src="scripts/legacy.js"></script>
<script src="scripts/time.js"></script>
<script src="scripts/chatview.js"></script>
<script src="scripts/channelmanager.js"></script>
<script src="scripts/events.js"></script>
<script src="scripts/annotatedplayer.js"></script>
<script src="scripts/notifications.js"></script>
<script src="scripts/copy.js"></script>
<script src="scripts/appcommon.js"></script>
<script src="scripts/replayer.js"></script>
<script src="scripts/app.js"></script>
</head>
<body>
<div>
<div id="menu">
<span>Menu</span>
<ul>
<li>
<input type="checkbox" id="notify-track-changes">
<label for="notify-track-changes">notify track changes</label>
</li>
<li class="section group-stream" data-event="copystreamurl" data-disabled>
Copy stream URL to clipboard
</li>
<li class="group-stream" data-event="copytrackurl" data-disabled>
Copy track URL to clipboard
</li>
<li class="group-stream" data-event="copytimeurl" data-disabled>
Copy current location to clipboard
</li>
</ul>
</div>
<section id="lists">
<header>
<h1>reLive</h1>
</header>
<div>
<h2 id="latest" class="active">latest</h2>
<h2 id="stations">stations</h2>
</div>
</section>
<section id="player">
<header>
<span id="back" title="Go back">go back</span>
<h1>Replayer</h1>
</header>
</section>
</div>
<footer>
2014 - 2018
• <a href="https://github.com/AMcBain/reLove" title="Where to file bugs when it's broke">source</a>
• <a href="http://relive.nu/" title="Never miss a show again">reLive</a>
• <a href="https://scenesat.com" title="Your connection to the scene">SceneSat</a>
</footer>
</body>
</html>