This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
index.html
64 lines (64 loc) · 1.99 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
53
54
55
56
57
58
59
60
61
62
63
64
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<script src="//code.jquery.com/jquery-1.10.1.min.js"></script>
<link
rel="stylesheet"
type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.2.1/css/font-awesome.min.css"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"
/>
<link rel="stylesheet" type="text/css" href="examples/style.css" />
</head>
<body>
<div class="container">
<h1><a href="http://www.algolia.com/">AlgoliaSearch</a>Helper</h1>
<h2>Getting started with the examples</h2>
<ul>
<li>
<a href="examples/instantsearch+helper.html"
>Faceting with the helper</a
>
</li>
<li>
<a href="examples/instantsearch+helper+excludes.html"
>Negative faceting with the helper</a
>
</li>
</ul>
<h2>Play with the examples locally</h2>
<p>
To get you started with the helper examples on your machine, follow
these steps:
</p>
<ul>
<li>
Checkout the project with
<span class="code"
>git clone
https://github.com/algolia/algoliasearch-helper-js.git</span
>
</li>
<li>In your command line, do <span class="code">npm install</span></li>
<li>
Launch the examples with
<span class="code">npm run examples</span> (it will open the browser
for you and show this page)
</li>
</ul>
<h2>API documentation</h2>
<a href="docs">JSDoc</a>
<h2>More informations api Algolia API</h2>
<p>
All informations related to Algolia can be found on
<a href="https://www.algolia.com/doc/javascript"
>the web documentation</a
>
</p>
</div>
</body>
</html>