-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (33 loc) · 1.65 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
<!doctype html>
<html lang="en">
<head>
<meta charset=“utf-8”>
<title>Earbud Traveler</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel='stylesheet' href='https://api.mapbox.com/mapbox-gl-js/v0.37.0/mapbox-gl.css' />
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src='https://api.mapbox.com/mapbox-gl-js/v0.37.0/mapbox-gl.js'></script>
<link rel="stylesheet" href="./styles.css">
<script src="./map.js" charset="utf-8"></script>
</head>
<body>
<div class="content">
<div id='map' class="map" style='width: 100vw; height: 75vh;'></div>
<div class="dragsource" draggable="true"> 🎧</div>
<div id="info" class="hidden">
<img src="http://www.iconninja.com/files/165/1013/256/male-head-with-headphones-icon.svg" />
<div id="ep-info">
<p id="ep-title"></p><br>
<a href="#" id="podcast-link">
<p id="podcast-title"></p>
</a><br>
<p id="podcast-producer"></p><br>
<p id="recommendation"></p> -<p id="recommender"></p>
</div>
</div>
<h1 id="welcome">Welcome to Earbud Traveler! Click to explore.</h1>
<iframe class="hidden" id="iframe" frameborder="0" height="200" width="100%" src=""></iframe>
</div>
</body>
</html>