-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch-results.html
More file actions
70 lines (48 loc) · 2.09 KB
/
search-results.html
File metadata and controls
70 lines (48 loc) · 2.09 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
---
title: Search Results
keywords: search
category: basics
url: search-results.html
---
<!doctype html>
<html lang="en">
<head>
<title>Search Results</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="shortcut icon" href="images/headers_footer/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/headers_footer/favicon.ico" type="image/x-icon">
</head>
<body class="palette-navy">
<div id="page" class="site">
{% include header.html pre_link=" " %}
<main id="content" class="site-content">
<article class="post post-full">
<header class="post-header has-gradient outer">
<div class="bg-img" style="background-image: url('images/headers_footer/fig_header.png')"></div>
<div class="inner-sm">
<h1 id="page-title" class="post-title">Search our Website</h1>
</div>
</header>
<div class="inner-md outer">
<div class="post-content">
<h2>Search:</h2>
<input type="search" id="search-input-page" placeholder="Search our website.." autofocus>
<h4>Search Results:</h4>
<ul id="results-container"></ul>
</div>
</div><!-- .inner-md -->
</article><!-- .post -->
</main><!-- .site-content -->
{% include footer.html %}
</div><!-- .site -->
<!-- Grab search library and local script-->
<script src="https://unpkg.com/simple-jekyll-search@latest/dest/simple-jekyll-search.min.js"></script>
<script src="/assets/js/search-script.js" type="text/javascript"></script>
</body>
</html>