-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
102 lines (100 loc) · 5.02 KB
/
index.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/x-icon" href="./assets/images/favicon.ico">
<title>Champs Diner</title>
<!-- Bootstrap -->
<link href="./assets/css/bootstrap.min.css" rel="stylesheet">
<link href="./assets/css/custom.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container-fluid">
<div align="center" class="col-md-12 col-xs-12">
<img class="pad-top visible-md" src="./assets/images/champsLogo.jpeg" alt="Champs Diner Brooklyn Vegan Food" />
<img class="pad-top-sm visible-xs" style="width:200px;" src="./assets/images/champsLogo.jpeg" alt="Champs Diner Brooklyn Vegan Food" />
<img class="pad-top visible-sm" src="./assets/images/champsLogo.jpeg" alt="Champs Diner Brooklyn Vegan Food" />
<img class="pad-top visible-lg" src="./assets/images/champsLogo.jpeg" alt="Champs Diner Brooklyn Vegan Food" />
</div>
<div class="col-md-12 col-xs-12">
<p class="hidden-xs header-line center-block" style="text-align: center;">197 Meserole Street, Brooklyn, NY 11206 | 718.599.2743 | [email protected] | Monday-Sunday 8am-12am</p>
<div class="header-line-sm text-center visible-xs">
<ul class="list-unstyled">
<li>197 Meserole Street, Brooklyn, NY 11206</li>
<li>718 599 2743</li>
<li>[email protected]</li>
<li>Diner Hours: Monday-Sunday 8AM-12AM</li>
</ul>
</div>
</div>
<div class="col-xs-2"></div>
<div class="col-md-12 col-xs-12">
<nav class = "navbar navbar-default" role = "navigation">
<div class = "navbar-header">
<button type = "button" class = "navbar-toggle"
data-toggle = "collapse" data-target = "#example-navbar-collapse">
<span class = "sr-only">Toggle navigation</span>
<span class = "icon-bar"></span>
<span class = "icon-bar"></span>
<span class = "icon-bar"></span>
</button>
</div>
<div class = "collapse navbar-collapse" id = "example-navbar-collapse">
<ul class = "nav navbar-nav">
<li><a href = "./about.htm">About</a></li>
<li><a href = "./coming-soon.htm">Catering</a></li>
<li class = "dropdown">
<a href = "#" class = "dropdown-toggle" data-toggle = "dropdown">
Menus
<b class = "caret"></b>
</a>
<ul class = "dropdown-menu">
<li class = "divider"></li>
<li><a href = "./assets/menus/menu_am_2.pdf" target="_blank">AM</a></li>
<li class = "divider"></li>
<li><a href = "./assets/menus/menu_pm_2.pdf" target="_blank">PM</a></li>
</ul>
</li>
<li><a href = "./contact.htm">Contact</a></li>
<li><a target="_blank" href="http://champsdiner.bigcartel.com/">Shop</a></li>
</ul>
</div>
</nav>
</div>
<div class="col-md-2 col-xs-2"></div>
<div align="center" class="well col-md-8 col-xs-12">
<h4>Follow us on Instagram <a href="https://www.instagram.com/champsdiner/" target="_blank" style="color: black;
text-decoration: none;">@champsdiner</a>!</h4>
<div id="instafeed"></div>
</div>
<div class="col-md-2 col-xs-2"></div>
<footer>
<div align="center" class="col-md-12 footer-copy col-xs-12">
made with <i class="glyphicon glyphicon-heart"></i> by <a style="color:black;text-decoration: none;" href="http://www.jay-lane.com" alt="jay lane web developer brooklyn">jay lane</a> | copyright champs diner 2016
</div>
</footer>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="./assets/js/bootstrap.min.js"></script>
<script src="./assets/js/instafeed.min.js"></script>
<script type="text/javascript">
var feed = new Instafeed({
get: 'user',
userId: '15796959',
clientId: 'cc55923c80494db8a06aba69de303712',
accessToken: '15796959.d493e53.5fdfb3f914f2449b8eab0fa58bcaa5bb',
template: '<a href="{{link}}" target="_blank"><img src="{{image}}" /></a>',
limit: '18'
});
feed.run();
</script>
</body>
</html>