-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathstore_details.html
109 lines (77 loc) · 3.78 KB
/
store_details.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Jane Street Cafe | Location and Hours</title>
<link rel="stylesheet" href="assets/css/pp_mis_oa.css" />
<!-- Standard jQquery Mobile themes can be created and replaced, to apply universal styling -->
<!-- Go to: http://jquerymobile.com/themeroller/index.php to build one, and download it to the themes directory. -->
<link rel="stylesheet" href="themes/jqm-paypal/theme.min.css" />
<!-- Do not edit or remove the following jQuery framework files. -->
<link rel="stylesheet" href="lib/jquery.mobile.structure-1.3.1.min.css" />
<script src="lib/jquery-1.9.1.min.js"></script>
<script src="lib/jquery.mobile-1.3.1.min.js"></script>
<!-- PP Bridge JS section -->
<script src="assets/js/bridge/ppbridge.js"></script>
<script src="assets/js/bridge/generic-merchant-core.js"></script>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function(){
// Initialize the actions, handlers and callbacks
PayPalApp.init(merchantConfig);
PayPalApp.call("MerchantTitleBar");
}, false);
</script>
</head>
<body>
<!-- Start Main Landing Page -->
<div data-role="page" data-theme="b" id="details" class="has_footer">
<div data-role="content">
<!-- Start Business Location Information Block -->
<h2 class="outer_title" style="margin-top:0;">Store Location</h2>
<ul data-role="listview" data-theme="d" data-inset="true" class="item-info island">
<li>
<p>43 Jane Street, San Francisco CA</p>
<div id="map-canvas">
<img width="100%" src="http://maps.googleapis.com/maps/api/staticmap?center=37.788556,-122.396031&zoom=14&size=400x300&maptype=roadmap&markers=color:red%7C37.788556,-122.396031&sensor=false" />
</div>
<button onclick="window.location.replace('directions.html');">Get Directions</button>
</li>
</ul>
<!-- End Business Location Information Block -->
<!-- Start Business Hourse Information Block -->
<h2 class="outer_title">Store Hours</h2>
<ul data-role="listview" data-theme="d" data-inset="true" class="item-info island">
<li>
<p>Order ahead will only be accepted up until 30 minutes prior to close.</p>
<h2>Monday <span>8am-10pm</span></h2>
<h2>Tuesday <span>8am-10pm</span></h2>
<h2>Wednesday <span>8am-10pm</span></h2>
<h2>Thursday <span>8am-10pm</span></h2>
<h2>Friday<span>8am-10pm</span></h2>
<h2>Saturday <span>8am-10pm</span></h2>
<h2>Sunday <span style="color:red;">Closed</span></h2>
</li>
</ul>
<!-- End Business Hourse Information Block -->
<div>
<a data-role="button" href="tel:+4155554312" data-theme="h">Call: 415-555-4312</a>
<a data-role="button" data-theme="c" href="mailto:[email protected]">Email: [email protected]</a>
</div>
</div> <!-- End Content Div -->
<!-- start footer -->
<div data-role="footer" data-position="fixed" data-id="footer-nav" data-theme="d" class="footer-bar" data-tap-toggle="false">
<div class="ui-grid-a">
<div class="ui-block-a">
<a data-transition="slide" data-direction="reverse" data-role="button" href="index.html" data-min="true" data-inline="true" data-theme="g">Menu</a>
</div>
<div class="ui-block-b">
<a data-theme="f" data-role="button" href="#cart" class="cart_button" data-iconpos="left" data-icon="ppoa-cart" data-min="true" data-inline="true" data-transition="slide">My Order (<span class="grand_total">$0</span>)</a>
<span class="cart_count_bubble">0</span>
</div>
</div><!-- /grid-b -->
</div><!-- end footer -->
</div>
<!-- End Main Landing Page -->
</body>
</html>