-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
47 lines (40 loc) · 1.4 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/themes/algolia-min.css" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="main.css">
<title>Dynamic Faceting</title>
</head>
<body>
<div class="topbar">Dynamic-faceting powered by InstantSearch.js</div>
<div class="wrapper">
<div class="left">
<div id="price">
<!-- Price widget will appear here -->
</div>
<div id="refinement-lists">
<!-- RefinementList widget will appear here -->
</div>
</div>
<div class="right">
<div class="guide">
💡 test with queries "smartphone" or "iphone"
</div>
<div id="search-box">
<!-- SearchBox widget will appear here -->
</div>
<div id="hits">
<!-- Hits widget will appear here -->
</div>
<div id="pagination">
<!-- Pagination widget will appear here -->
</div>
</div>
</div>
<!-- js -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/algoliasearch-lite.umd.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/instantsearch.production.min.js" crossorigin="anonymous"></script>
<script src="app.js"></script>
</body>
</html>