-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
125 lines (95 loc) · 3.94 KB
/
index.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>24 Diner | Chef-Inspired Comfort Food</title>
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="restaurant-project/alertify.default.css" />
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<!--NAVIGATION - includes first row-->
<div id="background">
<div class="row">
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name">
<a href="#"><img src="24dinerlogo.png" /></a>
</li>
</ul>
<section class="top-bar-section">
<!-- Right Nav Section -->
<ul class="right">
<li><a href="index.html"> Home </a></li>
<li><a href="food.html"> Food </a></li>
<li><a href="drink.html"> Drink </a></li>
<li><a href="about.html"> About </a></li>
<li><a href="contact.html"> Contact</a></li>
</ul>
</section>
</div>
</div>
<!--2rd ROW includes shortcuts to parts of site-->
<div class="container">
<div class="row">
<div class="small-4 columns">
<div class="panel">
<h3> Come Visit Us </h3>
<p> 600 N. Lamar Blvd <br />
Austin, Texas 78703 <br />
(512) 472-5400
</p>
</div>
</div>
<div class="small-4 columns">
<div class="panel">
<h3> View Our Menu </h3>
<p> Whether you're craving breakfast, lunch, dinner or desserts; we've got you covered. <br />
<a href="http://24diner.com/public/pdf/2412001%20Menu%2012.27.13C.pdf" class="button menu[tiny small large]">Menu</a>
<a href="http://24diner.com/public/pdf/Gluten-Free%2012-27a.pdf" class="button menu [tiny small large]">Gluten-Free Menu</a>
<a href="http://24diner.com/public/pdf/2412001%20Drinks%2012.16.13.pdf" class="button menu [tiny small large]">Bar Menu</a>
</p>
</div>
</div>
<div class="small-4 columns">
<div class="panel">
<h3> Hours </h3>
<p> Open 24 hours a day (except Wednesdays between 6 a.m.- 12 a.m.) </p>
</div>
</div>
</div>
<!--Third Row includes slideshow of pictures-->
<div class="row">
<div class="large-12 small-12 columns">
<h3> Menu Highlights </h3>
<ul class="large-block-grid-4">
<li><img src="https://scontent-b-dfw.xx.fbcdn.net/hphotos-ash3/t1/1560706_620310034690138_1901079808_n.jpg" /></li>
<li><img src="https://fbcdn-sphotos-a-a.akamaihd.net/hphotos-ak-ash3/t1/264531_618633628191112_1029658874_n.jpg" /></li>
<li><img src="https://scontent-a-dfw.xx.fbcdn.net/hphotos-prn1/t1/1094969_609301455790996_455904433_n.jpg" /></li>
<li><img src="https://fbcdn-sphotos-a-a.akamaihd.net/hphotos-ak-prn1/t1/1536663_606439966077145_1931212467_n.jpg" /></li>
</div>
<!--Fourth row includes footer-->
<div class="row">
<div class="large-12 columns">
<footer>
<div class="social media">
<a href="mailto:info@24diner.com"><img src="24dineremail.png" /></a>
<a href="http://www.facebook.com/24diner"><img src="24dinerfacebook.png" /></a>
<a href="http://www.twitter.com/24diner"><img src="24dinertwitter.png" /></a>
<a href="http://www.pinterest.com/24diner"><img src="24dinerpinterest.png" /></a>
<a href="https://www.google.com/maps/preview?q=24+diner+600+n+lamar+austin+78703+&ie=UTF8&hq=24+Diner&hnear=24+Diner,+600+N+Lamar+Blvd,+Austin,+Travis,+Texas+78703&z=14"><img src="24dinergoogle.png" /></a>
</div>
</footer>
</div>
</div>
<!--Javascript-->
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script src="restaurant-project/alertify.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>