|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8" /> |
| 5 | + <meta |
| 6 | + name="viewport" |
| 7 | + content="width=device-width, initial-scale=1, shrink-to-fit=no" |
| 8 | + /> |
| 9 | + <meta name="theme-color" content="#000000" /> |
| 10 | + |
| 11 | + <link rel="manifest" href="./manifest.webmanifest" /> |
| 12 | + <link rel="shortcut icon" href="./favicon.png" /> |
| 13 | + |
| 14 | + <link |
| 15 | + rel="stylesheet" |
| 16 | + href="https://cdn.jsdelivr.net/npm/instantsearch.css@7/themes/satellite-min.css" |
| 17 | + /> |
| 18 | + <link rel="stylesheet" href="./src/Dropdown.css" /> |
| 19 | + <link rel="stylesheet" href="./src/index.css" /> |
| 20 | + <link rel="stylesheet" href="./src/app.css" /> |
| 21 | + |
| 22 | + <title>instantsearch.js-app</title> |
| 23 | + </head> |
| 24 | + |
| 25 | + <body> |
| 26 | + <header class="header"> |
| 27 | + <h1 class="header-title"> |
| 28 | + <a href="/">instantsearch.js-app</a> |
| 29 | + </h1> |
| 30 | + <p class="header-subtitle"> |
| 31 | + using |
| 32 | + <a href="https://github.com/algolia/instantsearch.js"> |
| 33 | + InstantSearch.js |
| 34 | + </a> |
| 35 | + </p> |
| 36 | + </header> |
| 37 | + |
| 38 | + <div class="container"> |
| 39 | + <div id="searchbox"></div> |
| 40 | + |
| 41 | + <div class="search-panel__filters"> |
| 42 | + <div id="brand"></div> |
| 43 | + <div id="type"></div> |
| 44 | + <div id="price"></div> |
| 45 | + <div id="price2"></div> |
| 46 | + <div id="category"></div> |
| 47 | + </div> |
| 48 | + |
| 49 | + <div id="hits"></div> |
| 50 | + <div id="pagination"></div> |
| 51 | + </div> |
| 52 | + |
| 53 | + <script src="https://cdn.jsdelivr.net/algoliasearch/3.32.0/algoliasearchLite.min.js"></script> |
| 54 | + <script src="https://cdn.jsdelivr.net/npm/instantsearch.js@4.9.1"></script> |
| 55 | + <script src="./src/app.js"></script> |
| 56 | + </body> |
| 57 | +</html> |
0 commit comments