-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
385 lines (354 loc) · 16.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Work+Sans">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Bree+Serif">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Anton">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css'>
<link href='//netdna.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css' rel='stylesheet' />
<script src="https://kit.fontawesome.com/2de2c0099b.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css" />
<title>PULSE</title>
</head>
<body>
<header>
<nav class="navbar sticky-top navbar-expand-lg navbar-dark">
<div class="container-fluid">
<a href="#" class="navbar-brand">
<h3>PULSE</h3>
</a>
<button type="button" class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarCollapse">
<div class="btn-group">
<a id="drop-down-btn" type="button" class="btn btn-lg btn-secondary dropdown-toggle navCat"
data-bs-toggle="dropdown" data-bs-display="static" aria-expanded="false">
SEARCH BY CATEGORIES
</a>
<ul id="search-by-category-dropdown-ul" class="dropdown-menu dropdown-menu-end dropdown-menu-lg-start dw">
<!-- Events Categories -->
</ul>
</div>
<form class="d-flex">
<div class="input-group flex-row">
<input type="text" class="form-control" id="search" placeholder="Enter city">
<button type="button" class="btn btn-secondary btn-group" id="searchBtn"><i
class="fa-solid fa-magnifying-glass"></i></button>
</div>
</form>
<div class="navbar-nav nav-fill flex-row">
<!-- <a href="#" class="nav-item nav-link">FIND EVENTS</a> -->
<!-- <a href="#" class="nav-item nav-link">CREATE EVENTS</a> -->
<!-- <a href="#" class="nav-item nav-link">LOG IN</a> -->
<!-- <a href="#" class="nav-item nav-link">SIGN UP</a> -->
<!-- <div class="nav-item dropdown">
<a href="#" class="nav-link active dropdown-toggle" data-bs-toggle="dropdown">CATEGORIES</a>
<div class="dropdown-menu">
<a href="#" class="dropdown-item">MUSIC</a>
<a href="#" class="dropdown-item">NIGHTLIFE</a>
<a href="#" class="dropdown-item">PERFORMING & VISUAL ART</a>
<a href="#" class="dropdown-item">NETWORKING</a>
<a href="#" class="dropdown-item">FOOD & DRINK</a>
<a href="#" class="dropdown-item">HOBBIES</a>
</div>
</div> -->
</div>
</div>
</div>
</nav>
<div id="carouselExampleSlidesOnly" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="image/banner image 1.jpg" class="d-block w-100" alt="banner">
</div>
<div class="carousel-item">
<img src="image/banner image 2.jpg" class="d-block w-100" alt="banner">
</div>
</div>
</div>
</header>
<br>
<!-- Events section -->
<section id="trending">
<div class="container-fluid p-5">
<h4 id="events-section-title">EVENTS</h4>
<div id="events-row-container" class="row row-cols-1 row-cols-md-3 g-4 eventEl">
<!-- All the cards are render here -->
</div>
</div>
</section>
<hr>
<section class="midPage">
<div class="container-fluid p-5">
<div class="row row-equal-height">
<div class="row-md-6 left">
<h4>IYANYA LIVE - ONE NIGHT STAND</h4>
<img src="image/Iyana-One Night Stand.jpeg" class="img-fluid" alt="eventbanner" />
</div>
<div class="row-md-6 right">
<h4>Afro Beats | Amapiano | Bashment | R&B</h4>
<p>The dance floor is about to heat up with the best of sounds. It’s sure going to be pure entertainment as
our Dj lineup are the best of both worlds. As usual we bring you a premium nightclub experience every
Saturday in the biggest afro beats club in the Midlands, It's all about celebrating with good vibes, style ,
luxury and elegance. We always promise you satisfaction and all night of enjoyment.
</p>
<button type="button" class="btn-group btn btn-secondary">MORE INFORMATION</button>
</div>
</div>
</div>
<hr>
<div class="container-fluid p-5">
<div class="row row-equal-height">
<div class="row-md-6 left">
<h4>Soul Sessions at The Night Owl - Valentines Day Boogie - NOT SOUP / Liamosino / Brendan Freeman / Plus
Guests</h4>
<img src="image/Soul Session - Banner Image.jpg" class="img-fluid" alt="eventbanner" />
</div>
<div class="row-md-6 right">
<h4>About Soul Sessions</h4>
<p>Soul Sessions Brum are back on February 14th with our first showcase event of the year. Come on down to The
Night Owl in Digbeth for a night of top live music and great vibes!
</p>
<button type="button" class="btn-group btn btn-secondary">MORE INFORMATION</button>
</div>
</div>
</div>
<hr>
<div class="container-fluid p-5">
<div class="row row-equal-height">
<div class="row-md-6 left">
<h4>The Reggae Brunch BHAM - Sat 16th March</h4>
<img src="image/The Reggae Brunch.jpg" class="img-fluid" alt="eventbanner" />
</div>
<div class="row-md-6 right">
<h4>COME & PARTY AT THE REGGAE BRUNCH</h4>
<p>Welcome to The Craziest Brunch party in Town
We are please to announce our new event format of the 2 course seat meal. But of course there is also the
Party only experience option available.
Enjoy a full on immersive brunch party experience from start to finish. A celebration of Food, music and
entertainment with Island vibes. Expect to hear the REAL Reggae/Dancehall/Soca from across the decades to
the very current party bangers. 🎵 🎵 🎵
Join The reggae Brunch team of DJ, Hosts and staff, plus hundreds of like-minded music lovers for
celebrations every time.
</p>
<button type="button" class="btn-group btn btn-secondary">MORE INFORMATION</button>
</div>
</div>
</div>
<hr>
</div>
</section>
<section id="topEvents">
<div class="container-fluid p-5">
<h4>TOP EVENTS</h4>
<div class="row row-cols-1 row-cols-md-3 g-4">
<div class="col">
<div class="card h-100">
<a
href="https://www.skiddle.com/whats-on/London/Trapeze-Bar/AFROBEATS--AMAPIANO-PARTY-in-Shoreditch/37173404/"><img
src="image/amapiaono.jpg"
class=card-img-top alt="topeventbanner" /></a>
<div class="card-body">
<h5 class="card-title">AFROBEATS & AMAPIANO PARTY in Shoreditch</h5>
</div>
<div class="card-footer">
<small class="text-body-secondary">AMAPIANO | HOUSE | SCORPION KINGS |
</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<a href="https://www.skiddle.com/whats-on/Birmingham/Forum-Birmingham/Super-Sonix-16-FULL-CIRCLE/37166300/"><img
src="./image/events/Super Sonix 16+ FULL CIRCLE.avif" class=card-img-top alt="topeventbanner" /></a>
<div class="card-body">
<h5 class="card-title">Super Sonix 16+ FULL CIRCLE
</h5>
</div>
<div class="card-footer">
<small class="text-body-secondary">Serum | Sota | MC Busta DNB | Zylo
Music Genres
UK Garage | Drum n Bass | Bassline | Bass Music | Jungle</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<a href="https://www.skiddle.com/whats-on/Birmingham/LAB11/GLAS-Easter-Bank-Holiday-Rave/37388834/"><img
src="./image/events/GLAS Easter Bank Holiday Rave.jpg" class=card-img-top alt="topeventbanner" /></a>
<div class="card-body">
<h5 class="card-title">GLAS Easter Bank Holiday Rave</h5>
</div>
<div class="card-footer">
<small class="text-body-secondary">The BIGGEST, BADDEST & BEST Bank Holiday party is back in action...THE
GLAS EASTER RAVE!
House | UK Garage | Drum n Bass | Tech House | Bassline
</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<a href="https://www.skiddle.com/whats-on/Birmingham/LAB11/WYLD-4th-Birthday-W-ROSSI/37173344/"><img
src="./image/events/WYLD 4th Birthday W ROSSI..avif" class=card-img-top alt="topeventbanner" /></a>
<div class="card-body">
<h5 class="card-title">WYLD 4th Birthday W/ ROSSI.
</h5>
</div>
<div class="card-footer">
<small class="text-body-secondary">Rossi. | Ryan Resso | L.P Rhythm
Music Genres
House | Deep House | Tech House | Minimal</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<a
href="https://www.skiddle.com/whats-on/Birmingham/Zellig-Outdoor-Location/The-2-Tone-Ska-Orchestra/36487458/"><img
src="./image/events/The 2 Tone Ska Orchestra.jpg" class=card-img-top alt="topeventbanner" /></a>
<div class="card-body">
<h5 class="card-title">The 2 Tone Ska Orchestra</h5>
</div>
<div class="card-footer">
<small class="text-body-secondary">50 piece Orchestra & vocalists performing hits including : Ghost Town,
Too Much Too Young, Special Brew, A Message To You Rudy & many more...
The 2 Tone Ska Orchestra
The Beat | The Selecter | The Beat featuring Ranking Jnr
Music Genres
Ska | Reggae
</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<a href="https://www.skiddle.com/whats-on/Birmingham/The-Tunnel-Club/House-Of-God-31st-Birthday/37271571/"><img
src="./image/events/House Of God 31st Birthday.avif" class=card-img-top alt="topeventbanner" /></a>
<div class="card-body">
<h5 class="card-title">House Of God 31st Birthday</h5>
</div>
<div class="card-footer">
<small class="text-body-secondary">Surgeon | Sir Real | Paul Damage
Music Genres
Breaks | Drum n Bass | Techno | Acid House | Jungle</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<a
href="https://www.skiddle.com/whats-on/Birmingham/Forum-Birmingham/Hannah-Laing--Welcome-To-The-Doof/36730999/"><img
src="./image/events/Hannah Laing Welcome To The Doof.jpg" class=card-img-top
alt="topeventbanner" /></a>
<div class="card-body">
<h5 class="card-title">Hannah Laing | Welcome To The Doof</h5>
</div>
<div class="card-footer">
<small class="text-body-secondary">Louder presents Hannah Laing in Birmingham Hannah Laing Biianco Ammara
Sarah G Mddltn</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<a
href="https://www.skiddle.com/whats-on/Birmingham/Luna-Springs-Digbeth-/BINGO-LINGO---Birmingham---Paddys-Special/37162705/"><img
src="./image/events/BINGO LINGO - Birmingham - Paddy's Special!.jpg" class=card-img-top
alt="topeventbanner" /></a>
<div class="card-body">
<h5 class="card-title">BINGO LINGO - Birmingham - Paddy's Special!</h5>
</div>
<div class="card-footer">
<small class="text-body-secondary">Indoors at Luna Springs, one of Birmingham's most loved venues. BINGO
LINGO - Prizes that will change your life forever!</small>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<a
href="https://www.skiddle.com/whats-on/Birmingham/Herbert%27s-Yard/Bingo-Bab---A-Charity-Bingo-Night-with-Barbara-Nice/37181548/"><img
src="./image/events/Bingo Bab - A Charity Bingo Night with Barbara Nice.jpg" class=card-img-top
alt="topeventbanner" /></a>
<div class="card-body">
<h5 class="card-title">Bingo Bab - A Charity Bingo Night with Barbara Nice</h5>
</div>
<div class="card-footer">
<small class="text-body-secondary">Barbara Nice hosts a very special night of bingo at Herbert's
Yard.</small>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-dark">
<div class="container">
<div class="row">
<div class="col-md-6 item text">
<h2>PULSE</h2>
<p>Praesent sed lobortis mi. Suspendisse vel placerat ligula. Vivamus ac sem lacus. Ut vehicula rhoncus
elementum. Etiam quis tristique lectus. Aliquam in arcu eget velit pulvinar dictum vel in justo.</p>
</div>
<div class="col-sm-2 col-md-2 item">
<ul>
<li><a href="#">NETWORKING</a></li>
<li><a href="#">FAQ'S</a></li>
<li><a href="#">CONTACT US</a></li>
</ul>
</div>
<div class="col-sm-2 col-md-2 item">
<ul>
<li><a href="#">WORK WITH US</a></li>
<li><a href="#">TERMS OF USE</a></li>
<li><a href="#">PRIVACY POLICY</a></li>
</ul>
</div>
<div class="col-sm-2 col-md-2 item">
<ul>
<li><a href="#">ABOUT US</a></li>
<li><a href="#">HELP CENTRE</a></li>
<li><a href="#">CAREERS</a></li>
</ul>
</div>
<div class="col item social"><a href="#"><i class="icon ion-social-facebook"></i></a><a href="#"><i
class="icon ion-social-twitter"></i></a><a href="#"><i class="icon ion-social-snapchat"></i></a><a
href="#"><i class="icon ion-social-instagram"></i></a></div>
</div>
<p class="copyright">PULSE Copyright 2024</p>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.7.1.slim.min.js"
integrity="sha256-kmHvs0B+OpCW5GVHUNjv9rOmY0IvSIRcf7zGUDTDQM8=" crossorigin="anonymous"></script>
<!-- API -->
<script src="js/api/userLocation.js"></script>
<script src="js/api/seatgeek.js"></script>
<script src="js/api/datathistle.js"></script>
<!-- Creators -->
<script src="js/creators/upcomingEventCard.js"></script>
<script src="js/creators/searchBycategoryDropdown.js"></script>
<!-- Renders -->
<script src="js/renders/upcomingEventsSection.js"></script>
<script src="js/renders/categorySearchDropdown.js"></script>
<script src="js/renders/filteredEventsbyCategory.js"></script>
<!-- Resources -->
<script src="js/res/utils.js"></script>
<script src="js/res/localeStorage.js"></script>
<!-- Logic -->
<script src="script.js"></script>
</body>
</html>