-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·52 lines (48 loc) · 2 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
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Startups Berlin</title>
<link rel="icon" href="img/favicon.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,700,800" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- Google Map -->
<div id="map"></div>
<!-- Navigation Container -->
<div id="search-container">
<img class="logo" src="img/startups-logo.svg" alt="Startups Berlin Logo">
<div id="search-nav">
<input id="search-input" type="search" placeholder="Search Startup" data-bind="textInput: query, valueUpdate: 'keydown'"></input>
<div id="scroller">
<ul data-bind="template: {name: 'marker', foreach:markers}"></ul>
<script type="text/html" id="marker">
<div data-bind="visible: visible">
<a href="#" data-bind="attr: {id: id}">
<li>
<strong data-bind="text: title"></strong>
<p data-bind="text: streetAddress"></p>
<p data-bind="text: cityAddress"></p>
</li>
</a>
</div>
</script>
</div>
</div>
<!-- Close/Open Navigation Button -->
<div id="menu-container">
<img id="menu" src="img/exit.svg" alt="Menu Icon">
</div>
</div>
<!-- Reset Zoom Button -->
<div class="zoom-container">
<button id="zoom"><img src="img/zoom.svg" alt="Zoom Icon"></button>
</div>
<!-- Scripts -->
<script type="text/javascript" src="js/lib/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/lib/knockout-3.3.0.js"></script>
<script async type="text/javascript" src="js/script.js"></script>
</body>
</html>