forked from emilis/worldradioplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (94 loc) · 4.3 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<title>WorldRadio</title>
<meta charset="utf-8">
<meta http-equiv="pragma" content="no-cache">
<meta name="viewport" content="width=320">
<!-- CSS: -->
<link rel="stylesheet" type="text/css" href="/static/fonts/awesome/font-awesome.css">
<link rel="stylesheet" type="text/css" href="/static/css/gaia/tabs.css">
<link rel="stylesheet" type="text/css" href="/static/css/gaia/progress_activity.css">
<link rel="stylesheet" type="text/css" href="/static/style.css">
<!-- JavaScript: -->
<script src="/static/js/lib/lodash.js"></script>
<script src="/static/js/lib/async.js"></script>
<script src="/static/js/lib/good-job.js"></script>
<script src="/static/js/lib/zepto.js"></script>
<script src="/static/js/lib/buzz.js"></script>
<script src="/static/js/lib/objectfs/utils.js"></script>
<script src="/static/js/lib/objectfs/with-cached.js"></script>
<script src="/static/js/lib/objectfs/async-object.js"></script>
<script src="/static/js/lib/objectfs/xhrjson.js"></script>
<script src="/static/js/lib/objectfs/local-table.js"></script>
<script src="/static/js/lib/ctl/idb.js"></script>
<script src="/static/js/lib/ctl/idb-kv.js"></script>
<script src="/static/js/app.js"></script>
<script src="/static/js/xiph-org-stations.js"></script>
<script src="/static/js/db-local.js"></script>
<script src="/static/js/sound-player.js"></script>
<script src="/static/js/station.js"></script>
<script src="/static/js/search-engine.js"></script>
<script src="/static/js/player.js"></script>
<script src="/static/js/explorer.js"></script>
<script src="/static/js/station-list.js"></script>
<script src="/static/js/last.js"></script>
<script src="/static/js/search.js"></script>
<script src="/static/js/genres.js"></script>
</head>
<body role="app">
<div id="player">
<p class="info">
<span class="state">Arrété.</span> <span class="song-name"></span>
</p>
<p class="control">
<button class="play disabled"><i class="icon-play"></i></button>
</p>
</div>
<ul id="explorer" role="tablist" data-items="4" class="bottom">
<li id="last" role="tab">
<a href="#last"><i class="icon-star"></i></a>
<div role="tabpanel" class="tabpanel app-loading">
<p>Chargement de la liste des stations...</p>
</div>
</li>
<li id="search" role="tab">
<a href="#search"><i class="icon-search"></i></a>
<div role="tabpanel" class="tabpanel">
<form id="search-form">
<label><select id="search-genre" disabled="true"><option value="">Choisissez un genre</option></select></label>
<label><input id="search-query" placeholder="Type to search"></label>
</form>
<div id="search-results"></div>
</div>
</li>
<li id="add-station" role="tab" aria-disabled="true">
<a><i class="icon-plus"></i></a>
<div role="tabpanel" class="tabpanel">
<p>Under construction.</p>
</div>
</li>
<li id="settings" role="tab" aria-disabled="true">
<a><i class="icon-cogs"></i></a>
<div role="tabpanel" class="tabpanel">
<p>Under construction.</p>
</div>
</li>
</ul>
<script id="station-list" type="text/html">
<ul class="station-list"></ul>
</script>
<script id="station-view" type="text/html">
<li class="station">
<div class="buttons">
<button class="play"><i class="icon-play"></i></button>
</div>
<div class="info">
<span class="name"></span>
<span class="description"></span>
<span class="genre"></span>
</div>
</li>
</script>
</body>
</html>