-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrip.html
386 lines (349 loc) · 20.2 KB
/
trip.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
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/custom.css" />
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
<!-- Load Footer -->
<script>
$(function () {
$("#footerQuery").load("footer.html");
});
</script>
<!-- Tooltip Init -->
<script>
$(document).ready(function () {
$('[data-toggle="tooltip"]').tooltip();
});
</script>
<link rel="apple-touch-icon" sizes="57x57" href="favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- TODO: Add 'content' for meta tags below. -->
<meta property="og:url" content="<<Trip URL>>" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="TripBuddy.sg" />
<meta property="og:title" content="<<Trip Name>>" />
<meta property="og:description" content="<<Trip Tagline>>" />
<meta property="og:image" content="<<Trip Image Absolute URL>>" />
<meta property="fb:app_id" content="1681340718812167" />
<title>Trip X | TripBuddy.SG</title>
</head>
<body>
<div class="overflowWrap">
<!-- NAVBAR -->
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" data-target="#navbarCollapse" data-toggle="collapse" class="navbar-toggle">
<span class="sr-only">Toggle Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="index.html" class="pull-left"><img class="navbar-img" src="img/logo_navbar.png"></a>
</div>
<div id="navbarCollapse" class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#trip_overview">OVERVIEW</a>
</li>
<li><a href="#trip_itinerary">ITINERARY</a>
</li>
<li><a href="#trip_details">DETAILS</a>
</li>
<li><a href="#trip_host">THE HOST</a>
</li>
<li><a href="#trip_join" id="nav_join_trip"><i class="fa fa-plus-circle"></i> JOIN TRIP</a>
</li>
<!-- NOTE: When user is hosting the trip. -->
<!--
<li><a href="#trip_join" id="nav_join_trip"><i class="fa fa-group"></i> HOSTING</a>
</li>
-->
<!-- NOTE: When user has already joined the trip. -->
<!--
<li><a href="#trip_join" id="nav_join_trip"><i class="fa fa-check-circle"></i> JOINED</a>
</li>
-->
</ul>
</div>
</div>
</nav>
<!-- JUMBOTRON -->
<div class="trip-jumbotron">
<div class="jumbotron-content">
<h1>East vs West</h1>
<h3>A night where the question of who are better drinkers will forever be answered.</h3>
<h4>Hosted by Olivia Wilde</h4>
<a href="#trip_join">
<button class="btn btn-success btn-join"><i class="fa fa-plus-circle"></i> JOIN</button>
</a>
<!-- TODO: Add FB Share button. -->
<!-- NOTE: When user is hosting the trip. -->
<!--
<button class="btn btn-success btn-joined"><i class="fa fa-group"></i> HOSTING</button>
-->
<!-- NOTE: When user has already joined the trip. -->
<!--
<button class="btn btn-success btn-joined"><i class="fa fa-check-circle"></i> JOINED</button>
-->
</div>
</div>
<!-- TRIP OVERVIEW -->
<div class="container-fluid trip-overview" id="trip_overview">
<div class="row">
<div class="col-sm-6 col-sm-offset-3 col-md-3 col-md-offset-2">
<img src="img/sample-trip.png" class="img-responsive img-thumbnail">
</div>
<div class="col-sm-10 col-sm-offset-1 col-md-5 col-md-offset-0">
<h1>OVERVIEW</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<h1 id="trip_itinerary">ITINERARY</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</div>
</div>
<!-- SEPARATOR -->
<hr class="trip-separator">
<!-- TRIP DETAILS -->
<div class="container-fluid trip-details" id="trip_details">
<div class="row">
<div class="col-md-3 col-md-offset-1">
<div class="row">
<h3>WHO'S GOING?</h3>
</div>
<!-- NOTE: When nobody's joined the trip yet. -->
<!--
<div class="row err-search">
<p>Nobody's joined this trip yet.<br>Be the <a href="#trip_join">first one</a>!</p>
</div>
-->
<div class="row trip-user-list">
<div class="col-md-3 col-xs-3">
<a href="http://www.facebook.com" target="_blank" data-toggle="tooltip" data-placement="top" title="Olivia Wilde"><img src="img/sample-avatar.png" class="img-responsive trip-user-img"></a>
</div>
<div class="col-md-3 col-xs-3">
<a href="http://www.facebook.com" target="_blank" data-toggle="tooltip" data-placement="top" title="Olivia Wilde"><img src="img/sample-avatar.png" class="img-responsive trip-user-img"></a>
</div>
<div class="col-md-3 col-xs-3">
<a href="http://www.facebook.com" target="_blank" data-toggle="tooltip" data-placement="top" title="Olivia Wilde"><img src="img/sample-avatar.png" class="img-responsive trip-user-img"></a>
</div>
<div class="col-md-3 col-xs-3">
<a href="http://www.facebook.com" target="_blank" data-toggle="tooltip" data-placement="top" title="Olivia Wilde"><img src="img/sample-avatar.png" class="img-responsive trip-user-img"></a>
</div>
<div class="col-md-3 col-xs-3">
<a href="http://www.facebook.com" target="_blank" data-toggle="tooltip" data-placement="top" title="Olivia Wilde"><img src="img/sample-avatar.png" class="img-responsive trip-user-img"></a>
</div>
<div class="col-md-3 col-xs-3">
<a href="http://www.facebook.com" target="_blank" data-toggle="tooltip" data-placement="top" title="Olivia Wilde"><img src="img/sample-avatar.png" class="img-responsive trip-user-img"></a>
</div>
<div class="col-md-3 col-xs-3">
<a href="http://www.facebook.com" target="_blank" data-toggle="tooltip" data-placement="top" title="Olivia Wilde"><img src="img/sample-avatar.png" class="img-responsive trip-user-img"></a>
</div>
<div class="col-md-3 col-xs-3">
<a href="http://www.facebook.com" target="_blank" data-toggle="tooltip" data-placement="top" title="Olivia Wilde"><img src="img/sample-avatar.png" class="img-responsive trip-user-img"></a>
</div>
</div>
</div>
<div class="col-md-7">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-4 field-name">
<h3>DATE:</h3>
</div>
<div class="col-md-8 field-content">
<h3>27 June 2016</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 field-name">
<h3>TIME:</h3>
</div>
<div class="col-md-8 field-content">
<h3>5:00 PM - 1:00 AM</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 field-name">
<h3>LOCATION:</h3>
</div>
<div class="col-md-8 field-content">
<h3>Temasek Bar & Lounge</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 field-name">
<h3>GROUP SIZE:</h3>
</div>
<div class="col-md-8 field-content">
<h3>15 - 20 pax</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 field-name">
<h3>PRICE / PERSON:</h3>
</div>
<div class="col-md-8 field-content">
<h3>SGD 55</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 field-name">
<h3>ITEMS TO BRING:</h3>
</div>
<div class="col-md-8 field-content">
<h3>
<ul class="incl-excl">
<li>Photo ID</li>
<li>Umbrella</li>
</ul>
</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 field-name">
<h3>INCLUDES:</h3>
</div>
<div class="col-md-8 field-content">
<h3>
<ul class="incl-excl">
<li>Transport from Temasek Bar & Lounge to campus.</li>
<li>Cover charge at Temasek.</li>
<li>Drinks & finger food at Temasek.</li>
</ul>
</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 field-name">
<h3>EXCLUDES:</h3>
</div>
<div class="col-md-8 field-content">
<h3>
<ul class="incl-excl">
<li>Transport to Temasek Bar & Lounge from campus.</li>
<li>Dinner at Temasek.</li>
</ul>
</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 field-name">
<h3>THEME:</h3>
</div>
<div class="col-md-8 field-content">
<h3>Nightlife</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 field-name">
<h3>GETTING THERE:</h3>
</div>
<div class="col-md-8 field-content">
<h3>Public Transportation, Cab</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- SEPARATOR -->
<hr class="trip-separator">
<!-- TRIP HOST DETAILS -->
<div class="container-fluid trip-host" id="trip_host">
<div class="row">
<h1>ABOUT THE HOST</h1>
<div class="col-sm-3 col-sm-offset-1 col-md-2 col-md-offset-2 host-pic">
<img src="img/sample-host.png" class="img-responsive img-thumbnail">
</div>
<div class="col-sm-7 col-md-6">
<h3>Olivia Wilde</h3>
<h4>Computer Science, Year 2</h4>
<h4>School of Computer Engineering</h4>
<h4>Nanyang Technological University</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</div>
</div>
<!-- JOIN TRIP + PAYMENT -->
<div class="container-fluid trip-join" id="trip_join">
<div class="row">
<h1>JOIN THIS TRIP</h1>
<!-- NOTE: Add payment button here. -->
<!--
<div class="col-md-8 col-md-offset-2">
</div>
-->
<!-- NOTE: When user has not signed in yet. -->
<!--
<div class="col-md-8 col-md-offset-2">
<a href="sign-in.html">
<button class="btn btn-primary">SIGN IN</button>
</a>
</div>
-->
<!-- NOTE: When it is less than 8 hours for the trip to start. -->
<!--
<div class="col-md-8 col-md-offset-2">
<h3>Sorry, you can no longer join this trip.</h3>
<h4>It is less than eight hours before the trip starts. You can check out more trips <a href="view-all-trips.html">here</a>, though!</h4>
</div>
-->
<!-- NOTE: When the max group size is met. -->
<!--
<div class="col-md-8 col-md-offset-2">
<h3>Sorry, you can no longer join this trip.</h3>
<h4>The maximum group size has been met. You can check out more trips <a href="view-all-trips.html">here</a>, though!</h4>
</div>
-->
<!-- NOTE: When user is hosting the trip. -->
<!--
<div class="col-md-8 col-md-offset-2">
<h3>YOU ARE HOSTING THIS TRIP!</h3>
<h4>If you would like to change any detail of the trip or can't make it and would like to cancel this trip, please <a href="mailto:[email protected]?Subject=Cancellation%20of%20Trip">contact us</a><strong> immediately</strong>.</h4>
</div>
-->
<!-- NOTE: When user has already joined the trip. -->
<!-- NOTE: Refund only applicable if earlier than 00:00 day before trip. -->
<!--
<div class="col-md-8 col-md-offset-2">
<h3>YOU HAVE ALREADY JOINED THIS TRIP!</h3>
<h4>If you can't make it and would like a partial refund, please <a href="feedback.html">contact us</a>.</h4>
<h4>Enjoy your trip and <a href="mailto:[email protected]">let us know</a> if you have any questions!</h4>
</div>
-->
</div>
</div>
<!-- FOOTER -->
<div id="footerQuery"></div>
</div>
<!-- NAVBAR COLLAPSE FIX ON MOBILE FOR #LINKS -->
<script>
$(document).ready(function () {
$(".navbar-nav li a").click(function (event) {
$(".navbar-collapse").collapse('hide');
});
});
</script>
</body>