-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathplayqueue.html
More file actions
62 lines (50 loc) · 2.32 KB
/
playqueue.html
File metadata and controls
62 lines (50 loc) · 2.32 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<!-- iPhone Stuff -->
<meta content="minimum-scale=1.0, width=device-width, maximum-scale=0.6667, user-scalable=no" name="viewport" />
<meta name="keywords" content="iPhone, iPod Touch, remote, mpd, control, php" />
<meta name="description" content="iPhone web based remote control for MPD" />
<meta content="yes" name="apple-mobile-web-app-capable" /><!-- When opened from home screen app will not have safari bars -->
<meta name="apple-mobile-web-app-status-bar-style" content="default"/><!-- Changes the status bar color. default/black/black-translucent -->
<link rel="apple-touch-icon-precomposed" href="image.png"/><!-- icon on springboard 58x58px already -->
<link href="startup.png" rel="apple-touch-startup-image" /><!-- Start up icon 320x460px -->
<!-- Check for webkit -->
<script type="text/javascript">
// Are we using a webkit browser?
if (RegExp(" AppleWebKit/").test(navigator.userAgent))
{
document.write('<link href="css/iWebKit_style.css" rel="stylesheet" media="screen" type="text/css" />\n');
document.write('<script src="javascript/iWebKit_functions.js" type="text/javascript"></'+'script>\n');
}
else
{
document.write("This browser is not webkit enabled and because of this the remote will display incorrectly. Alternative style sheets are comming soon! :-)\n");
}
</script>
<!-- Style Sheets -->
<link href="css/style.css" rel="stylesheet" media="screen" type="text/css" />
<!-- Javascript -->
<script src="javascript/globalFunctions.js" type="text/javascript"></script>
<script src="javascript/playqueueFunctions.js" type="text/javascript"></script>
<title>Remote - Play Queue</title>
</head>
<body class="ipodlist">
<div id="topbar" class="black"> <!--class="transparent"-->
<div id="leftnav"><a href="index.php">Remote</a></div>
<div id="title">Play Queue</div>
<div id="rightbutton"><a href="#">Clear</a></div>
</div>
<div id="content">
<ul id="playlist">
</ul>
</div>
<div id="footer">
<span id="loading"></span>
</div>
<script type="text/javascript">
playqueue_init();
</script>
</body>
</html>