-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogramGuide.html
More file actions
56 lines (42 loc) · 1.77 KB
/
Copy pathprogramGuide.html
File metadata and controls
56 lines (42 loc) · 1.77 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Multi-page template</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page" id="programGuide">
<div data-role="header">
<img src="images/bsr.jpg" style="float:left;display:inline" width="100%" />
</div><!-- /header -->
<div data-role="content">
<div data-role="fieldcontain" data-theme="a">
<select name="select-choice-1" id="dayPicker" data-theme="a" onchange="onSelectionChanged();">
<option value="monday" id="test">Monday</option>
<option value="tuesday">Tuesday</option>
<option value="wednesday">Wednesday</option>
<option value="thursday">Thursday</option>
<option value="friday">Friday</option>
<option value="saturday">Saturday</option>
<option value="sunday">Sunday</option>
</select>
</div>
<br />
<ul data-role="listview" data-theme="a" data-split-theme="d" id="day">
</ul>
</div><!-- /content -->
<div data-role="footer" data-position="fixed" data-id="myfooter">
<a href='index.html' class='ui-btn-left ui-btn-back' data-icon='arrow-l'>Back</a>
<div align="right">
<a href="http://twitter.com/BSRKent"><img src="images/TwitterIcon_small1.png" height="50" width="auto"/></a>
<a href="http://www.facebook.com/blacksquirrelradio"><img src="images/facebook.jpg"/></a>
<a href="http://blacksquirrelradio.tumblr.com/"><img src="images/tumblr_icon_50.png"/></a>
</div>
</div>
</div><!-- /page -->
</body>
</html>