-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·85 lines (78 loc) · 3.77 KB
/
index.html
File metadata and controls
executable file
·85 lines (78 loc) · 3.77 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/png" href="img/favicon.png">
<title>GigMap -- Tour Visualizer</title>
</head>
<body>
<div class="container">
<header class="header">
<img src="img/gigmap.png" alt="gigmap logo" class="logo">
<form action="#" class="search">
<input type="text" class="search__input" placeholder="Search Musical Artist">
<button class="search__button">
<svg class="search__icon">
<use xlink:href="img/sprite.svg#icon-magnifying-glass"></use>
</svg>
</button>
<div class="search__error">
<svg class="search__error-icon">
<use xlink:href="img/sprites.svg#icon-error"></use>
</svg>
<span>Please enter an artist's name</span>
</div>
</form>
<nav class="user-nav">
<div class="user-nav__icon-box band-select">
<p class="user-nav__text">Artist</p>
<svg class="user-nav__icon">
<use xlink:href="img/sprites.svg#icon-users"></use>
</svg>
<span class="user-nav__notification">7</span>
<ul class="dropdown-content">
</ul>
</div>
<div class="user-nav__icon-box year-select">
<p class="user-nav__text">Tour Year</p>
<svg class="user-nav__icon">
<use xlink:href="img/sprites.svg#icon-calendar"></use>
</svg>
<ul class="year-dropdown-content">
</ul>
</div>
</nav>
</header>
<div class="content">
<main class="map-view">
<div id="map"></div>
</main>
<nav class="sidebar">
<div class="results-bar">
<div class="preloader"><img src="img/ajax-loader.gif" /></div>
<div class="results-bar__title hidden">
<span id="results-title">Musical Artist</span>
<span> - </span>
<span id="results-year">Year</span>
</div>
</div>
<div class="results">
<!-- <button class="btn-inline">Show all <span>→</span></button> -->
</div>
<div class="legal">
<span>© 2017 by Mike Bush. All rights reserved.</span>
<span>Concert data provided by <a href="http://www.songkick.com" target="__blank"> Songkick</a></span>
</div>
</nav>
</div>
</div>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDd2YiG5SZRDx96i1rzeX-VSUUYbBvu0Lg&callback=initMap">
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="js/app2.js"></script>
</body>
</html>