forked from meadwell/mead-well
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstore.html
100 lines (94 loc) · 3.68 KB
/
store.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Mead Well">
<title>Mead Well</title>
<link href="https://fonts.googleapis.com/css?family=Cinzel|Roboto|Open+Sans|Lato" rel="stylesheet">
<link rel="stylesheet" type="text/less" href="static/css/normalize.css">
<link rel="stylesheet" type="text/less" href="static/css/layout.less">
<link rel="stylesheet" type="text/less" href="static/css/components.less">
<link rel="stylesheet" type="text/less" href="static/css/sections.less">
<link rel="stylesheet" type="text/less" href="static/css/page-specific.less">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"/>
<script type="text/javascript" src="static/js/less.min.js"></script>
<script type="text/javascript" src="static/js/scripts.js"></script>
</head>
<body id="product-list">
<header class="header" data-header>
<div class="wrapper">
<nav class="nav--primary">
<ul>
<li class="nav-item">
<!--<a class="nav-link" href="#">Store</a>-->
</li>
</ul>
</nav>
<a class="logo" href="/">
<img src="static/images/logo.png" height=40" alt="">
</a>
<nav class="nav--secondary">
<ul>
<li class="nav-item">
<!--<a class="nav-link" href="#">Cart</a>-->
</li>
</ul>
</nav>
</div>
</header>
<!-- VinoShipper Wine List Integration -->
<div id="vs-winelist"></div>
<script type="text/javascript">
var vsDisableResize = false;
var vsCssUrl = "";
var vsWineryId = 1890;
</script>
<script src="https://vinoshipper.com/iframe/v3/injector.js"></script>
<!-- End VinoShipper Wine List Integration -->
<section class="section section--visit-us">
<div class="visit-us">
<div class="visit-us--content">
<div class="wrapper">
<h3>mead tasting and tours</h3>
<div>Friday</div>
<div>Saturday</div>
<div>Sunday</div>
</br>
<h5>Our address:</h5>
<div>3525 I Street, Unit #201</div>
<div>Philadelphia, PA 19134</div>
<br>
<h5>Phone number:</h5>
<phone>(267) 454 - 5956</phone></br>
</br>
<h5>Email:</h5>
<email>[email protected]</email>
</div>
</div>
<div class="visit-us--image">
<img src="static/images/section-visit-us.png" alt="">
</div>
</div>
</section>
<footer>
<div class="footer--social">
<ul>
<li>
<a href="https://www.instagram.com/mead.well/" target="_blank">
<img src="static/images/instagram.png" alt="">
</a>
</li>
<li>
<a href="https://www.facebook.com/Philadelphia-Mead-Well-119688815320259/" target="_blank">
<img src="static/images/facebook.png" alt="">
</a>
</li>
</ul>
</div>
<div class="footer--copyright">
<div>© 2018 Philadelphia Mead Well Inc. All Rights Reserved</div>
</div>
</footer>
</body>
</html>