-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
83 lines (72 loc) · 2.57 KB
/
test.html
File metadata and controls
83 lines (72 loc) · 2.57 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css"
href="https://cdn.jsdelivr.net/npm/instantsearch.js@2.10.4/dist/instantsearch.min.css">
<link rel="stylesheet" type="text/css"
href="https://cdn.jsdelivr.net/npm/instantsearch.js@2.10.4/dist/instantsearch-theme-algolia.min.css">
<script src="https://cdn.jsdelivr.net/npm/instantsearch.js@2.10.4"></script>
<title>Test Page | Live Search App</title>
</head>
<body>
<header>
<div class="containerApp">
<nav class="navBar">
<a href="index.html">
<h1 class="logo">Program FeedBack App</h1>
</a>
<div class="menu">
<ul>
<a href="index.html">
<li class="navLink">Home</li>
</a>
</ul>
</div>
<a class="icon" id="clickMe"><i class="fa fa-bars"></i>|||</a>
<div class="navMobile">
<div id="navLinks">
<ul>
<a href="index.html">
<li class="navLink">Home</li>
</a>
</ul>
</div>
</div>
</nav>
</div>
</header>
<div class="containerApp">
<h1>Live Search Test</h1>
<div id="current-refined-values">
<!-- CurrentRefinedValues widget will appear here -->
</div>
<div id="clear-all">
<!-- ClearAll widget will appear here -->
</div>
<div id="search-box">
<!-- SearchBox widget will appear here -->
</div>
<div id="refinement-list">
<!-- RefinementList widget will appear here -->
</div>
<div id="hits">
<!-- Hits widget will appear here -->
</div>
<div id="pagination">
<!-- Pagination widget will appear here -->
</div>
</div>
<footer>
<div class="containerApp">
<div class="churchName">Live Search App</div>
<div class="copyright">CopyRight © 2019, All Rights Reserved.</div>
</div>
</footer>
<script src="js/test.js"></script>
</body>
</html>