-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
88 lines (73 loc) · 2.36 KB
/
menu.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Restaurant Info</title>
<!--TU theme-->
<link rel="stylesheet" href="themes/TUfood.css" />
<link href="css/style.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/jquery.mobile.structure-1.3.2.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="js/jquery.mobile-1.3.2.min.js"></script>
<!--google map-->
<script type="text/javascript" src="http://www.google.fr/jsapi"></script>
<script src="js/jquery.js"></script>
</head>
<body>
<div id="restau" data-role="page" data-theme="a">
<div data-role="header">
<h1>Mobile Food</h1>
<a href="#menu" data-icon="gear" data-iconpos="notext"></a>
<a rel="external" href="index.html" data-icon="home" data-iconpos="notext"></a>
</div><!--header-->
<div data-role="panel" id="menu" data-theme="a" data-display="overlay">
<ul data-role="listview">
<li data-icon="delete"><a href="#" data-rel="close">Close</a></li>
<li data-role="list-divider"></li>
<li><a href="#Category">Category</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div><!--Menu panel-->
<div data-role="content">
<div class="ui-grid-a" id="restau_infos">
<div class="ui-block-a">
<h1>Bob's Pizza</h1>
<h2>Location</h2>
<p>30 Rue des Tonneliers</p>
<p>67000 Strasbourg</p>
</div>
<div class="ui-block-b">
<p><img src="img/restau01.jpg" alt="restaurant photo" class="photo_container rounded"/></p>
<p><a href="info.html" rel="external" data-role="button">Return to Info</a></p>
</div>
</div><!-- /grid-a -->
<hr/>
<div class="ui-grid-a" id="contact_infos" align="center">
<!--Menu-->
</div><!-- /grid-a -->
<!--foodlist to be populated by php-->
<table>
<tr>
<td width='50px'>Food Image</td>
<td width='30%'>Item Item</td>
<td width='15%'>Price</td>
<td width='20%'>Rating</td>
</tr>
<tr>
<td><img src="img/temp_burger.png"</td>
<td>Bacon CheeseBurger</td>
<td>$4.99</td>
<td>Awesome</td>
</tr>
<tr>
<td><img width='50px' height='50px'src="img/temp_turkey.jpg"</td>
<td width='30%'>Turkey on Kaiser</td>
<td>$3.99</td>
<td>Run Away</td>
</tr>
</table>
<!--rating-->
</div>
</div><!-- /page -->
</body>
</html>