-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (29 loc) · 1.47 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
<html>
<head>
<title>Yoko Algolia Custom Map Widget Test</title>
<!-- Include Algolia InstantSearch.js -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/themes/reset-min.css" integrity="sha256-2AeJLzExpZvqLUxMfcs+4DWcMwNfpnjUeAAvEtPr0wU=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/themes/satellite-min.css" integrity="sha256-p/rGN4RGy6EDumyxF9t7LKxWGg6/MZfGhJM/asKkqvA=" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/algoliasearch-lite.umd.js" integrity="sha256-pxkGFjfnFWYGOtV9uhCWK/spKiGS0Z7gVDKYm39LyfM=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/instantsearch.production.min.js" integrity="sha256-5u4a3JbgF+Ok/p1R8e9iF4nWi4Qs8O1b89pc+8p1UB4=" crossorigin="anonymous"></script>
<!-- Include Stylesheet -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="algolia-search">
<!-- Map -->
<div id="map">Add Map Here</div>
<div class="results-and-facets" style="display: flex;">
<!-- Facets -->
<div id="facets" style="max-width: 300px; width: 33.333333%;">
<div id="searchbox"></div>
</div>
<!-- Search Results -->
<div id="hits" style="flex: 1;"></div>
</div>
</div>
<script src="variables.js"></script>
<!-- Include Our Script.js -->
<script src="script.js"></script>
</body>
</html>