-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
96 lines (87 loc) · 3.06 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
<!DOCTYPE html>
<html lang="en-CA">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Concert Finder</title>
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.css">
<link href="https://fonts.googleapis.com/css?family=Shrikhand" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
</head>
<body>
<main>
<section class="hero is-primary">
<div class="hero-body">
<div class="container">
<h1 id="app-name" class="title is-1 has-text-white">Concert Finder</h1>
</div>
</div>
</section>
<section class="main">
<div class="columns is-centered">
<div class="column is-3">
<div class="control search-control">
<input id="artist" class="input is-medium search-input" type="text" placeholder="Artist">
</div>
</div>
<div class="column is-3">
<div class="control search-control">
<input id="city" class="input is-medium search-input" type="text" placeholder="City">
</div>
</div>
<div class="column is-2">
<div class="control search-control">
<a id="search" class="button is-info is-medium">Search</a>
</div>
</div>
</div>
<div class="columns is-centered">
<div class="column is-6">
<table id="events" class="table is-invisible">
<thead>
<tr>
<th>Event</th>
<th>Venue</th>
<th>Location</th>
<th>Date</th>
</tr>
</thead>
<tbody id="eventsRows">
<tr>
<td class="event-td">Event 1</td>
<td class="venue-td">Venue 1</td>
<td class="location-id">Location 1</td>
<td class="date-td">Date 1</td>
</tr>
</tbody>
</table>
</div>
<div class="column is-3">
<h2 id="h2-similar" class="is-invisible">You may also like:</h2>
<table id="similar-artists" class="table is-invisible">
<tbody id="similarArtistRows" class="similar">
<tr>
<td>Img 1</td>
<td class="has-text-centered">Artist 1</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- External JavaScript -->
<script src="assets/javascript/application.js"></script>
</main>
<footer class="footer has-background-primary is-paddingless">
<div class="container">
<div class="content has-text-centered">
<p class="has-text-weight-light has-text-white">Copyright © 2018 Concert Finder</p>
</div>
</div>
</footer>
</body>
</html>