This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
about2.html
391 lines (335 loc) · 12.6 KB
/
about2.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<script src="js/jquery-1.7.1.min.js"></script>
<!-- <script src='jquery/jquery-1.9.1.min.js'></script> -->
<link href='fullcalendar/jquery-ui-1.10.3.custom.css' rel='stylesheet' />
<link href='fullcalendar/fullcalendar.css' rel='stylesheet' />
<link href='fullcalendar/fullcalendar.print.css' rel='stylesheet' media='print' />
<link href='http://fonts.googleapis.com/css?family=Della+Respira|Average+Sans' rel='stylesheet' type='text/css'>
<!-- <script src='jquery/jquery-1.9.1.min.js'></script> -->
<script src='jquery/jquery-ui-1.10.2.custom.min.js'></script>
<script src='fullcalendar/fullcalendar.min.js'></script>
<script src='fullcalendar/gcal.js'></script>
<script src='jquery.imageLens.js' type="text/javascript"></script>
<script src='js/jquery.imageLens.js' type="text/javascript"></script>
<script type="text/javascript" language="javascript">
$(function () {
$("#img_01").imageLens();
$("#img_02").imageLens({ lensSize: 200 });
$("#img_03").imageLens({ imageSrc: "sample01.jpg" });
$("#img_04").imageLens({ borderSize: 8, borderColor: "#06f" });
});
</script>
<script type="text/javascript" language="javascript">
function radioButtonClick() {
var $clickedRadioButton = $(this);
var clickedValue = $clickedRadioButton.val();
$('#container form').hide();
$('#' + clickedValue + '-form').show();
}
function documentLoad() {
$('#container :radio').click(radioButtonClick);
}
$(documentLoad);
</script>
<style>
#general-form, #ccsfg-form, #employment-form {
display: none;
}
</style>
<!--
<script src="simpleCart.js"></script>
<script>
simpleCart({
checkout: {
type: "PayPal" ,
email: "[email protected]"
}
});
</script>
-->
<!-- <script src='jquery/jquery.ba-outside-events.js'></script> -->
<!-- <script src='jquery/jquery.clickout.js'></script> -->
<script>
$(document).ready(function() {
$('#calendar').fullCalendar({
// Brian's Cal
events: 'https://www.google.com/calendar/feeds/Samadn123%40gmail.com/public/basic',
defaultView: 'basicWeek',
theme: true,
height:400,
eventClick: function(event) {
// opens events in a popup window
window.open(event.url, 'gcalevent', 'width=700,height=600');
return false;
},
loading: function(bool) {
if (bool) {
$('#loading').show();
}else{
$('#loading').hide();
}
}
});
});
$('#calendar').fullCalendar('option', 'aspectRatio', 7.8);
</script>
<!-- Hide the modal dialog when someone clicks outside of it. -->
<script>
var globalCloseSelector = 'body';
function closeModal(e) {
var $target = $(e.target);
if (!$target.is(':input')) {
$('.modal').hide();
$(globalCloseSelector).die('click', closeModal);
}
}
$('.modalLink').live('click', function (){
$(globalCloseSelector).live('click', closeModal);
});
</script>
<style>
html
{
overflow: scroll;
}
body {
margin-top: 40px;
text-align: center;
font-size: 14px;
font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
}
#loading {
position: absolute;
top: 5px;
right: 5px;
}
#calendar {
width: 900px;
margin: 0 auto;
}
</style>
<meta charset="utf-8">
<title>Tangierino</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="css/prettyPhoto.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/camera.css">
<link rel="stylesheet" href="css/flexslider.css">
<link rel="stylesheet" href="css/skeleton.css">
<!-- BRIAN OTHER POPUP -->
<!-- <link rel="stylesheet" type="text/css" href="css/main.css"> -->
<!-- <script src="js/jquery-1.7.1.min.js"></script> -->
<script type="text/javascript" src="js/jquery-ui.min.js"></script>
<script src="js/jquery.mobile.customized.min.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/camera.min.js"></script>
<!-- <script src="js/jquery.ba-outside-events.js"></script> -->
<!-- <script src="js/jquery.ba-outside-events.min.js"></script> -->
<!-- BRIAN POP UP WINDOW JS -->
<script type="text/javascript" src="js/jquery_002.js"></script>
<script type="text/javascript" src="js/site.js"></script>
<!-- <script type="text/javascript" src="js/jscroll.js"></script> -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<script src="js/respond.src.js"></script>
<![endif]-->
<!-- BRIAN THIS IS THE POP UP CSS AND JS -->
<!-- <link rel="stylesheet" href="css/reveal.css"> -->
<!-- <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.min.js"></script> -->
<!-- <script type="text/javascript" src="js/jquery.reveal.js"></script> -->
<!--
<script tyep="text/javascript" src="js/jquery.modal.js"></script>
<script tyep="text/javascript" src="js/jquery.modal.min.js"></script>
<script tyep="text/javascript" src="js/site.js"></script>
-->
<script src="js/audio.min.js"></script>
<script>
audiojs.events.ready(function() {
var as = audiojs.createAll();
});
</script>
<style>
.audiojs {
position: relative;
right: 599px;
top: -53px;
float: right;
width: 35px;
}
.audiojs .scrubber {
display: none;
}
.audiojs .time {
display: none;
}
</style>
</head>
<body>
<div id="closepop">
<div class="wrapper">
<div id="header">
<div class="container">
<div id="logo">
<a href="index.html">
<img width="300px;" src="images/Tangierino_logo.png">
</a>
</div>
<br class="tablet-break">
<br class="tablet-break">
<br class="tablet-break">
<div class="fright2">
<ul id="nav">
<li class="">
<a class="glow" href="#home">Home</a>
</li>
<li class="current">
<a class="glow" href="#about">About</a>
</li>
<li>
<a class="glow" href="#blog">Menus</a>
</li>
<li>
<a class="glow" href="#catalog">Gallery</a>
</li>
<li>
<a class="glow" href="#services">Reservations</a>
</li>
<span id="giftcardnavsmall">
<li>
<a class="glow2" href="#contacts">GC & Contact</a>
</li>
</span>
<span id="giftcardnav">
<li>
<a class="glow2" href="#contacts">Gift Cards / Contact</a>
</li>
</span>
</ul>
</div>
<div class="clear"></div>
<div id="audiojs_wrapper0" class="audiojs playing" classname="audiojs">
<object id="audiojs0" width="1" height="1" style="position: absolute; left: -1px;" name="audiojs0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">
<param value="js/audiojs.swf?playerInstance=audiojs.instances['audiojs0']&datetime=1384207953352.2202" name="movie">
<param value="always" name="allowscriptaccess">
<embed width="1" height="1" allowscriptaccess="always" src="js/audiojs.swf?playerInstance=audiojs.instances['audiojs0']&datetime=1384207953352.2202" name="audiojs0">
</object>
<audio autoplay="autoplay" loop="loop" preload="auto" src="music/The_Letter.mp3"> </audio>
<div class="play-pause">
<p class="play"></p>
<p class="pause"></p>
<p class="loading"></p>
<p class="error"></p>
</div>
<div class="scrubber">
<div class="progress" style="width: 0px;"></div>
<div class="loaded" style="width: 0px;"></div>
</div>
<div class="time">
<em class="played">02:33</em>
/
<strong class="duration">03:15</strong>
</div>
<div class="error-message"></div>
</div>
</div>
</div>
<div class="main">
<br class="smallscreen-break">
<br class="smallscreen-break">
<br class="smallscreen-break">
<br class="tablet-break">
<br class="tablet-break">
<br class="tablet-break">
<br class="phone-break">
<br class="phone-break">
<br class="phone-break">
<br class="phone-break">
<!--about-->
<div class="section" id="about">
<br><br><br><br><br><br>
<div class="container">
<span class="titles"><img src="images/titles/About.png"></span><h2> <a href="#" class="backtop"></a></h2>
<div class="col54_percent fleft">
<!-- <h3>About</h3> -->
<p>Tangierino is a one-of-a-kind and exceptionally eclectic restaurant that combines the deeply-developed Moroccan culinary culture with a contemporary infusion of French, Mediterranean and American Chophouse influences. The resulting cuisine is out-of-this-world unique, deliciously decadent and appeals to a very wide range of tastes.</p>
<p> From the magic flavors induced by clay tagines, to a charbroiled rack of lamb dusted with exotic spices to the sesame-kissed tuna loin, to our rich, fork-tender braised short rib with fig, the unmistakable flavors of Tangierino are alluring and memorable. Experience the sensual, rose water handwashing ritual and dine surrounded by inspiring décor underneath flowing tapestries on ornate tables dappled with fresh rose petals. Tangierino is a one-of-a-kind place to be savored.</p>
</div>
<div class="col42_percent fright">
<!-- <h3>Testimonials</h3> -->
<div class="flexslider">
<ul class="slides">
<li>
<div id="test-text">
<p><img src="images/5star.png" style="display:inline; bottom:108px; right:306px; position:absolute; "> Lavishly appointed with rich tapestries, heavy drapes, bejeweled chandeliers and hammered brass, Tangierino oozes both opulence and decadence. It’s not just romantic, it’s downright sensual.</p>
<!-- <p><span class="author">John</span></p> -->
</div>
</li>
<li>
<div id="test-text">
<p>A place where there are belly dancers at dinner and where I prefer tea over chocolate? Tangierino is indeed a very different world, but a world I’d love to come back to over and over again.</p>
<!-- <p><span class="author">Adam</span>, lorem ipsum</p> -->
</div>
</li>
</ul>
<div class="clear"></div>
<ol class="flex-control-nav">
<li>
<a class="active">1</a>
</li>
<li>
<a class="">2</a>
</li>
</ol>
</div>
</div>
<div class="clear"></div>
<div class="products">
<div class="team">
<img src="images/about/zagat.png" alt="Zagat">
<div class="author">
<span style="font-size:14pt;">Zagat</span>
</div>
“The product of an over $2 million-dollar renovation, Tangierino is a distinctive Moroccan Chophouse recognized as one of Boston’s premier destination restaurants by Zagats, Boston Magazine, The Boston Globe, Improper Bostonian and Phantom Gourmet.”
</div>
<div class="team">
<img src="images/about/bestboston.png" alt="Best of Boston">
<div class="author">
<span style="font-size:14pt;">Best of Boston</span>
</div>
“Stepping into this Moroccan and Mediterranean-fusion restaurant transports you to a sultry fairytale land of ornate textures and luscious colors. Also, Tangierino’s food is exceptional!”
</div>
<div class="team">
<img src="images/about/AOL.png" alt="AOL">
<div class="author">
<span style="font-size:14pt;">AOL</span>
</div>
“Tangierino’s flavors are from another world, with caramelized onions, slices of green olive and preserved lemon peel, and a whiff of sweet spice that carries the crunchy nuggets of squid to another level.”
</div>
<div class="team">
<img src="images/about/yelp.png" alt="Yelp">
<div class="author">
<span style="font-size:14pt;">Yelp</span>
</div>
“They do make a killer Blood Orange Cosmo to accompany all the amazing spices and tastes…and by that I mean it is fantastic! Tangierino is like no other.”
</div>
<div class="clear"></div>
</div>
</div>
</div>
</div>
<script src="js/jquery.scrollTo.js"></script>
<script src="js/jquery.nav.js"></script>
<script src="js/jquery.prettyPhoto.js"></script>
<script src="js/jquery.flexslider.js"></script>
</div>
</div>
</div>
</body>
</html>