-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
28 lines (24 loc) · 924 Bytes
/
example.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Orcinus Site Search - Offline example</title>
<!-- Include the default stylesheet, or create your own -->
<link rel="stylesheet" href="orcinus/css/search.css">
</head>
<body>
<h1>Orcinus Site Search - Offline example</h1>
<!-- Include these files where your search results should appear -->
<script src="orcinus/js/mustache/mustache.js"></script>
<script src="orcinus/js/offline-search.js"></script>
<!--
To enable Typeahead suggestions on any page without displaying
search results, don't include the mustache.js file.
-->
<!-- Script files below are only required for Typeahead -->
<script src="orcinus/js/jquery.min.js"></script>
<script src="orcinus/js/typeahead.bundle.min.js"></script>
<script src="orcinus/js/search.js"></script>
</body>
</html>