-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (38 loc) · 2.01 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> Dhabas of Bhubaneswar </title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href='https://fonts.googleapis.com/css?family=Baumans'>
<!--Font Awesome-->
<link rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.1.0/css/all.css"
integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt"
crossorigin="anonymous">
<!--jQuery-->
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
</head>
<body>
<div class="search-box-container" id="search-box-container">
<input class="search-box-input" placeholder="Search your Dhaba here" type="text" name="q" data-bind="value: searchQuery, valueUpdate: 'keyup'">
<ul class="search-results-list" data-bind="visible: searchQuery, template: {name: 'search-result-template', foreach: search}"></ul>
</div>
<!--Template to display the search results-->
<script type="text/template" id="search-result-template">
<li class="search-result" data-bind="text: title, click: openInfowindow"></li>
</script>
<div class="map-container" id="map-container"></div>
<div class="weather-info"></div>
<!--Knockout JS-->
<script src="js/lib/knockout-3.4.2.js"></script>
<!--Google Map API-->
<script
src="https://maps.googleapis.com/maps/api/js?v=3.32&key=AIzaSyDEArnN6PcHEu8QNZ7dv8AsqCK9PVPrC1o&libraries=places"
onerror="googleMapError()"></script>
<script src="js/app.js"></script>
</body>
</html>