summaryrefslogtreecommitdiff
path: root/static/index.html
blob: 9f9b854c3a3c948ef423fd1c598be6a37c3eaebf (plain)
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
<!DOCTYPE html>
<html>
<head>
	<title>&#x97f3;&#x697d;</title>
	<script type="text/javascript" src="/static/jquery-1.7.1.min.js"></script>
	<script type="text/javascript" src="/static/jquery-ui-1.8.18.custom.min.js"></script>
	<script type="text/javascript" src="/static/soundmanager2-jsmin.js"></script>
	<script type="text/javascript" src="/static/handlebars-1.0.0.beta.6.js"></script>
	<script type="text/javascript" src="/static/underscore-min.js"></script>
	<script type="text/javascript" src="/static/backbone-min.js"></script>
	<script type="text/javascript" src="/static/backbone-localstorage.js"></script>
	<script type="text/javascript" src="/static/templates.js"></script>
	<script type="text/javascript" src="/static/sound.js"></script>
	<script type="text/javascript" src="/static/playlist.js"></script>
	<script type="text/javascript" src="/static/init.js"></script>
	<link rel="stylesheet" href="/static/jquery-ui-1.8.18.custom.css" type="text/css" />
	<link rel="stylesheet" href="/static/style.css" type="text/css" />
</head>
<body>
	<div id="content">
		<span id="status">
		</span>
		<div id="control">
			<a href="javascript:play()"><img src="/static/icons/control_play_blue.png" alt="Play" /></a>
			<a href="javascript:pause()"><img src="/static/icons/control_pause_blue.png" alt="Play" /></a>
			<div id="progress"></div>
		</div>
		<div id="tabs">
			<ul>
				<li><a href="#playlist-tab" accesskey="p"><span class="accessor">P</span>laylist</a></li>
				<li><a href="#search-tab" accesskey="s"><span class="accessor">S</span>earch</a></li>
				<li><a href="#directory-tab" accesskey="d"><span class="accessor">D</span>irectories</a></li>
			</ul>
			<div id="playlist-tab">
				<table class="track-table">
				<thead>
					<tr>
						<th>Title</th>
						<th>Artist</th>
						<th>Album</th>
						<th>&nbsp;</th>
					</tr>
				</thead>
				<tbody id="playlist">
				</tbody>
				</table>
			</div>
			<div id="search-tab">
				<input type="text" id="search_box" />
				<span>
					<input type="button" id="search-add" value="Add selected" />
				</span>
				<table class="track-table">
				<thead>
					<tr>
						<th>Title</th>
						<th>Artist</th>
						<th>Album</th>
					</tr>
				</thead>
				<tbody id="search-results">
					<tr>
						<td colspan="3" style="font-style: italic">Use the search box above to find music.</td>
					</tr>
				</tbody>
				</table>
			</div>
			<div id="directory-tab">
				<input type="button" id="directory-add" value="Add selected" />
				<table id="directory-table" class="track-table">
				<thead>
					<tr>
						<th>Title</th>
						<th>Artist</th>
						<th>Album</th>
					</tr>
				</thead>
				<tbody id="directory-dirs">
				</tbody>
				<tbody id="directory-tracks">
				</tbody>
				</table>
			</div>
		</div>
	</div>
</body>
</html>