-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
63 lines (59 loc) · 1.79 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>icedrop</title>
<link href="//fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="menu">
<div id="header">
<h1>
<a href="https://github.com/nucular/icedrop">icedrop</a>
<small>
<a id="server-host" href="#"></a><input type="text" id="server-edit-box"></input>
</small>
<span id="server-edit" class="button small">: :</span>
<span class="button right" id="effects-toggle">Effects</span>
</h1>
</div>
<div id="effects">
<div href="#" class="effect button template">
<img class="effect-thumbnail"></img>
<div class="effect-inner">
<span class="effect-name"></span>
<div class="effect-author"></div>
</div>
</div>
</div>
<div id="stations">
<a href="#" class="station button template">
<span class="station-listeners">0</span>
<span class="station-name"></span>
<div>
<span class="station-title">Unknown</span>
-
<span class="station-artist">Unknown</span>
</div>
</a>
</div>
</div>
<div id="meta" class="button">
<div id="meta-inner">
<div id="meta-listeners"></div>
<div id="meta-right">
<span id="meta-title"></span><br/>
<span id="meta-artist"></span>
</div>
</div>
</div>
<canvas id="screen"></canvas>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="effects.js"></script>
<script src="util.js"></script>
<script src="base.js"></script>
<script src="api.js"></script>
<script src="app.js"></script>
</body>
</html>