-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsearch.html
37 lines (29 loc) · 1.08 KB
/
search.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
---
layout: default
title: Search
search_omit: true
---
<h1>Search</h1>
<!-- Search form -->
<form method="get" action="/search" data-search-form>
<label for="q">Search term</label>
<input type="search" name="q" id="q" placeholder="Enter search term" data-search-input />
<input type="submit" value="Search" />
</form>
<!-- Search results placeholder -->
<p data-search-found>
<span data-search-found-count></span> result(s) found for “<span data-search-found-term></span>”:
</p>
<div data-search-results></div>
<!-- Search result template -->
<script type="text/x-template" id="search-result">
<div>
<h2><a href="##Url##">##Title##</a></h2>
<!-- <h2><a href="##Url##">##Date##</a></h2> -->
<!-- <a href="##Url##">Read “##Title##”</a> -->
</div>
</script>
<!-- jQuery - required but can be moved to the <head> -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<!-- Search script - Must appear after template -->
<script src="/assets/js/search.js"></script>