-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (70 loc) · 2.81 KB
/
index.html
File metadata and controls
71 lines (70 loc) · 2.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="theme-color" content="#992fe0">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Seattle Stuffs</title>
<link href="css/style.css" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="shortcut mountain icon" type="image/png" href="img/favicon.png">
</head>
<body>
<div class="container">
<aside data-bind="style: {width: sideBarOpen() ? '250px' : '0px'}">
<article class="panel panel-default">
<a href="javascript:void(0)" class="closebtn" data-bind="click: $root.closeNav">
×
</a>
<div class="panel-heading">
Place List
</div>
<div class="panel-body">
<ul data-bind="foreach: placeList">
<li data-bind="text: title,
click: $parent.setPlace,
visible: match,
style: { fontWeight: selected() ? 'bold' : 'normal'}">
</li>
</ul>
</div>
</article>
<form action="#" class="filter">
<input type="search"
data-bind="textInput: query, valueUpdate: 'keyup'"
autocomplete="off"
placeholder="Filter places...">
</form>
<article class="panel panel-default">
<div class="panel-heading">
Wikipedia results:
</div>
<div class="panel-body" >
<ul data-bind="foreach: wikiArr">
<li data-bind="html: wikiStr"></li>
</ul>
</div>
</article>
<article class="panel panel-default">
<div class="panel-heading">
New York Times Articles:
</div>
<div class="panel-body">
<ul data-bind="foreach: nytArr">
<li data-bind="html: nytStr"></li>
</ul>
</div>
</article>
</aside>
<div class="map-canvas" id="map"></div>
</div>
<script src="js/lib/knockout-3.2.0.js"></script>
<script src="js/lib/jquery-3.2.1.min.js"></script>
<script src="js/lib/bootstrap.min.js"></script>
<script src="js/locations.js"></script>
<script src="js/app.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?v=3&key=AIzaSyCoD7Z1yUOvwDLIwIQXgW18D8wQZTirfUk&callback=initMap" onerror="googleError()"></script>
</body>
</html>