This repository has been archived by the owner on Aug 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page16.html
53 lines (51 loc) · 1.73 KB
/
page16.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>MyList | FoodLoop</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link href="css/codiqa.ext.css" rel="stylesheet">
<link href="css/jquery.mobile-1.3.1.css" rel="stylesheet">
<script src="js/jquery-1.9.1.js"></script>
<script src="js/jquery.mobile-1.3.1.js"></script>
<script src="js/codiqa.ext.js"></script>
<script src="js/foodloop.js"></script>
</head>
<body>
<div data-role="page" data-control-title="MyList" id="page16">
<div data-role="content">
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-role="list-divider" role="heading">
My List
</li>
<li data-theme="c">
<a href="page13.html" data-transition="slide">
Cupping Room Cafe
</a>
</li>
<li data-theme="c">
<a href="index.html" data-transition="slide">
Joe's BBQ
</a>
</li>
</ul>
</div>
<div data-role="tabbar" data-iconpos="top" data-theme="a">
<ul>
<li>
<a href="page18.html" data-transition="fade" data-theme="" data-icon="bars">
Filter
</a>
</li>
<li>
<a href="page13.html" data-transition="fade" data-theme="" data-icon="info">
Get Now
</a>
</li>
</ul>
</div>
</div>
</body>
</html>