This repository has been archived by the owner on Jul 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (31 loc) · 1.52 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Neighborhood Map</title>
<meta name="description" content="Displays interesting locations within my neighborhood.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
</head>
<body>
<p class="hidden hamburger-icon" data-bind="click: toggleMenu, css: isSidebarExpanded() == true ? 'hidden' : ''">☰</p>
<nav class="sidebar" data-bind="css: isSidebarExpanded() == true ? 'sidebar-shown' : 'sidebar-hidden'">
<p class="collapse-icon" data-bind="click: toggleMenu">✖</p>
<h1>Salzburg</h1>
<h2>Highlights</h2>
<input class="filter-input" type="text" data-bind="value: filterQuery, valueUpdate: 'afterkeydown'">
<ul class="currentLocationsList" data-bind="foreach: currentLocations">
<li data-bind="text: title, click: $parent.highlight"></li>
</ul>
</nav>
<main id="map">
</main>
<script src="js/knockout-3.4.2.js"></script>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/main.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBC3iHbmpR6NEVrA68AoxK5lf6bNsicsaE&v=3&callback=googleSuccess" onerror="googleError()"></script>
</body>
</html>