-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (46 loc) · 1.94 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ATX Trail Plot</title>
<link href='https://fonts.googleapis.com/css?family=Bitter' rel='stylesheet'>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.min.css">
<meta name="viewport" content="width=device-width">
</head>
<body>
<div class="container-fluid mainframe">
<div class="row">
<div class="col-xs-12 col-sm-4 col-md-3 sidebar closed">
<nav>
<h1>
<i class="glyphicon glyphicon-remove sidebar-close float-right" title="Hide Navigation"></i>
<span class="run">ATX TRAIL PLOT</span>
</h1>
<input id="filter-location-input" type="search" title="Filter Locations" placeholder="Where do you like to run?"
data-bind="textInput: filterLocation, valueUpdate: 'afterkeydown'">
<ul class="marker-list" data-bind="foreach: filteredLocations">
<li class="marker-list-item" data-bind="text: title, click:$parent.markerOnClick"></li>
</ul>
</nav>
<ul class="icons">
<li>
<a href="https://www.linkedin/in/cmandersen/"><img src="img/linkedin.png" alt="LinkedIn" style="width:30px;height:30px;border:0;"></a>
</li>
<li>
<a href="https://www.github.com/codechad"><img src="img/github.png" alt="GitHub" style="width:30px;height:30px;border:0;"></a>
</li>
</div>
<div class="col-xs-12 col-sm-8 col-md-9 padding-0">
<i class="glyphicon glyphicon-menu-hamburger sidebar-open" title="Show Navigation"></i>
<div id="map"></div>
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src='js/knockout-3.4.2.js'></script>
<script src="js/locations.js"></script>
<script src="js/mapStyles.js"></script>
<script src="js/main.js"></script>
</body>
</html>