-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
333 lines (303 loc) · 13.1 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
<!DOCTYPE html>
<html>
<head>
<title>I Love Music</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://unpkg.com/masonry-layout@4/dist/masonry.pkgd.min.js"></script>
<script src="https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<script src="assets/js/youtube.js" type="text/javascript"></script>
<script src="https://apis.google.com/js/client.js?onload=onClientLoad" type="text/javascript"></script>
<script src="https://cdn.jsdelivr.net/momentjs/2.12.0/moment.min.js"></script>
<link rel="stylesheet" href="./assets/css/bandsintown.css">
<script src="https://www.gstatic.com/firebasejs/4.2.0/firebase.js"></script>
<script src="assets/js/firebase.js" type="text/javascript"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,400i,700,700i" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<script>
$(document).ready(function() {
// Calls Carousel
$('.carousel').carousel();
// Calls Tooltip
$(document).tooltip({
selector: '[data-toggle="tooltip"]'
});
// Smooth Scroll
$('.smooth-scroll').click(function() {
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
var navHeight = $("#site-header").height();
var pos = target.offset();
pos = pos.top - navHeight;
$("html,body").animate( { scrollTop: pos }, 800 ); return false;
}
}
});
});
</script>
</head>
<body data-spy="scroll" data-target="#artist-navigation" data-offset="192">
<header id="site-header" class="site-header" data-spy="affix" data-offset-top="110">
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#"><img src="assets/img/i-love-music-logo.png" alt="iLoveMusic" class="img-responsive"></a>
</div>
<form class="site-search navbar-form navbar-left">
<div class="form-group clearfix">
<input type="text" class="form-control input-lg" placeholder="Search Artist" id="search" val="">
<button type="submit" class="btn btn-primary btn-lg text-uppercase" id="searchButton">Search</button>
</div>
</form>
</div><!-- /.container-fluid -->
</nav><!-- /.navbar -->
<nav id="artist-navigation" class="navbar navbar-inverse navbar-subnav">
<div class="container">
<ul class="nav navbar-nav">
<li class="active"><a href="#bandsintown" class="smooth-scroll">Events</a></li>
<li><a href="#youtube" class="smooth-scroll">Videos</a></li>
<li><a href="#spotify" class="smooth-scroll">Spotify</a></li>
<li><a href="#social" class="smooth-scroll">Social</a></li>
</ul><!-- /.navbar-nav -->
</div><!-- /.container -->
</nav><!-- /.navbar-subnav -->
</header><!-- /#site-header -->
<div id="feature-carousel" class="site-feature carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/img/shakira.jpg" class="media-fluid" id="carousel" artistName="shakira">
<div class="carousel-caption">
<h1>SHAKIRA</h1>
</div>
</div>
<div class="item">
<img src="assets/img/drake.jpg" class="media-fluid" id="carousel" artistName="drake">
<div class="carousel-caption">
<h1>DRAKE</h1>
</div>
</div>
<div class="item">
<img src="assets/img/u2.jpg" class="media-fluid" id="carousel" artistName="u2">
<div class="carousel-caption">
<h1>U2</h1>
</div>
</div>
<div class="item">
<img src="assets/img/cold-play.jpg" class="media-fluid" id="carousel" artistName="coldplay">
<div class="carousel-caption">
<h1>COLDPLAY</h1>
</div>
</div>
</div><!-- /.carousel-inner -->
<a class="left carousel-control" href="#feature-carousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#feature-carousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div><!-- /.site-feature -->
<!-- div bandsintown start -->
<div id="bandsintown">
<div class="container"> <!-- start of container -->
<div class="row"> <!-- div row start -->
<!-- div for no artist found -->
<div class="noArtist"></div>
<!-- div bandsintown left column start -->
<div class="col-sm-4">
<div class="modal fade" id="imageModal" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal">×</button>
<img class="img-responsive modalImage" src=''></img>
</div>
</div>
</div>
</div>
<div class="list"></div>
</div>
<!-- div bandsintown left column end -->
<!-- div bandsintown right column start -->
<div class="col-sm-8">
<div class="eventTable">
<div><h2>EVENT</h2></div>
<div class="table-responsive">
<table class="table table-condensed">
<thead>
<tr>
<th class="th">Date</th>
<th class="th">Venue</th>
<th class="th">Location</th>
<th class="th">Tickets</th>
</tr>
</thead>
<tbody class="event table-hover">
</tbody>
</table>
</div>
</div>
</div>
<!-- div bandsintown right column end -->
</div> <!-- div row end -->
<!-- div to show article -->
<div id="article"></div>
</div> <!-- div row end -->
</div> <!-- end of container -->
</div>
<!-- div bandsintown end -->
<div id="youtube">
<div class="container">
<div class="page-header">
<h1 class="text-uppercase text-center">Videos</h1>
</div><!-- /.page-header -->
<div id="videos-row" class="row"></div><!-- /#videos-row -->
</div><!-- /.container -->
</div><!-- /#youtube -->
<div id="spotify">
<div class="container">
<div class="page-header">
<h1 class="text-uppercase text-center">Spotify</h1>
</div><!-- /.page-header -->
<div id="spotify-row" class="row"></div><!-- /#Spotify-row -->
</div><!-- /.container -->
</div><!-- /#spotify -->
<!-- Start of Social data -->
<div id="social">
<!-- FaceBook Row -->
<div class="row" id="facebook">
<div class="site-container container">
<div class="page-header">
<h1 class="text-uppercase text-center">Facebook</h1>
</div><!-- /.page-header -->
<div class="col-sm-12">
<div id="fb-row" class="row">
</div><!-- /#giphy-row -->
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.site-container -->
<div class="row" id="instagram">
<div class="container">
<div class="page-header">
<h1 class="text-uppercase text-center">Instagram</h1>
</div><!-- /.page-header -->
<div class="col-sm-12">
<div id="insta-row" class="row">
</div><!-- /#giphy-row -->
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.site-container -->
</div>
<div id="weather">
</div>
<div id="modal-video" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="modal-video-label">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div><!-- /.modal-header -->
<div class="modal-body">
<div class="modal-video">
<div class="embed-responsive embed-responsive-16by9">
<iframe id="player" class="embed-responsive-item" width="640" height="360" src="" frameborder="0" allowfullscreen></iframe>
</div>
</div><!-- /.modal-video -->
</div><!-- /.modal-body -->
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /#modal-video -->
<div id="feaured-items" class="featured-items">
<div class="container">
<div class="row">
<div class="col-featured-item col-sm-4">
<div class="featured-item">
<div class="featured-item-img">
<img src="assets/img/bruno-mars.jpg" class="media-fluid artist" artistName="bruno mars">
</div>
<div class="featured-item-meta">
<h4 class="featured-item-title text-uppercase">Artist of the Month</h4>
<p><strong>Bruno Mars</strong></p>
<p class="video-item-desc">Born Peter Gene Hernandez on October 8, 1985, in Honolulu, Hawaii, popular singer-songwriter Bruno Mars grew up in a very musical family....</p>
</div>
</div>
</div><!-- /.col -->
<div class="col-featured-item col-sm-4">
<div class="featured-item">
<div class="featured-item-img">
<img src="assets/img/dua-lipa.jpg" class="media-fluid artist" artistName="dua lipa">
</div>
<div class="featured-item-meta">
<h4 class="featured-item-title text-uppercase">Upcoming Artist</h4>
<p><strong>Dua Lipa</strong></p>
<p class="featured-item-desc">The British singer is a rising force in soulful pop, and she's scheduled to make a winter debut that will undoubtedly hit the radio...</p>
</div>
</div>
</div><!-- /.col -->
<div class="col-featured-item col-sm-4">
<div class="featured-item">
<div class="featured-item-img">
<img src="assets/img/recent-searches.jpg" class="media-fluid">
</div>
<div class="featured-item-meta">
<h4 class="featured-item-title text-uppercase">Recent Searches</h4>
<p class="video-item-desc">
<p><strong>Most Recent Searches by Users</strong></p>
<ul class="list-searches list-inline">
</ul>
</p>
</div>
</div>
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container-fluid -->
</div><!-- /#featured-items -->
<!-- footer start -->
<section id="footer">
<div class="container">
<div class="details">
<h1 class="aboutUs">ABOUT US</h1>
<p>TAKE A LOOK AT OUR GITHUB</p>
</div>
<div class="row">
<div class="col-sm-4">
<a href="https://github.com/okapoor" target="_blank"><i class="fa fa-github fa-fw"></i>
<span class="contact-info">github.com/okapoor</span></a>
</div>
<div class="col-sm-4">
<a href="https://github.com/mariomelchor" target="_blank"><i class="fa fa-github fa-fw"></i>
<span class="contact-info">github.com/mariomelchor</span></a>
</div>
<div class="col-sm-4">
<a href="https://github.com/daxon2009" target="_blank"><i class="fa fa-github fa-fw"></i>
<span class="contact-info">github.com/daxon2009</span></a>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<a href="https://github.com/jo3myself" target="_blank"><i class="fa fa-github fa-fw"></i>
<span class="contact-info">github.com/jo3myself</span></a>
</div>
<div class="col-sm-6">
<a href="https://github.com/ylee1101" target="_blank"><i class="fa fa-github fa-fw"></i>
<span class="contact-info">github.com/ylee1101</span></a>
</div>
</div>
<p class="credits">
<i class="fa fa-copyright "></i> 2017 iLoveMusic, LLC
</p>
</div>
</section>
<!-- footer end -->
<script type="text/javascript" src="./assets/js/social.js"></script>
<script type="text/javascript" src="./assets/js/spotify.js"></script>
<script type="text/javascript" src="./assets/js/bandsintown.js"></script>
</body>
</html>