forked from algolia/instantsearch-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 1.77 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Instantsearch Workshop</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/bootstrap/3.3.5/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/instantsearch.js/1/instantsearch.min.css" />
<link rel="stylesheet" type="text/css" href="main.css" />
</head>
<body>
<header class="row">
<div class="">
<a href="./" class="logo">You<i class="fa fa-youtube-play"></i></a>
</div>
<div class="searchbox-container">
<div class="input-group">
<input type="text" class="form-control" id="q" />
<span class="input-group-btn">
<button class="btn btn-default"><i class="fa fa-search"></i></button>
</span>
</div>
</div>
</header>
<section class="">
<aside>
<ul class="nav nav-list">
<li><a href=""><i class="fa fa-home"></i> Home</a></li>
<li class="separator"></li>
</ul>
<h5><i class="fa fa-chevron-right"></i> Genres</h5>
<div id="genres"></div>
<h5><i class="fa fa-chevron-right"></i> Ratings</h5>
<div id="ratings"></div>
<div class="thank-you">Data courtesy of <a href="https://www.imdb.com/">imdb.com</a></div>
</aside>
<article>
<div id="stats" class="text-right text-muted"></div>
<hr />
<div id="hits"></div>
<div id="pagination" class="text-center"></div>
</article>
</section>
<script src="https://cdn.jsdelivr.net/instantsearch.js/1/instantsearch.min.js"></script>
<script src="search.js"></script>
</body>
</html>