aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/search.html
blob: 7dd02df74edb91e685224e2bb86aabe425d45a28 (plain)
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
{{ define "footerfiles" }}
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fuse.js/3.2.1/fuse.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mark.js/8.11.1/jquery.mark.min.js"></script>
<script src="{{ "js/search.js" | absURL }}"></script>
{{ end }}

{{ define "main" }}
<section class="bg-near-white">
    <div class="mw7 center pv4" >
        <form action="{{ "search" | absURL }}">
            <input id="search-query" name="s"/>
        </form>
        <div id="search-results">
            <h3>Matching pages</h3>
        </div>
    </div>
</section>
<!-- this template is sucked in by search.js and appended to the search-results div above. So editing here will adjust style -->
<script id="search-result-template" type="text/x-js-template">
 <div id="summary-${key}" class="bt bb b--black-10 ph4">
 <h4><a href="${link}">${title}</a></h4>
 <p>${snippet}</p>
 ${ isset tags }<p>Tags: ${tags}</p>${ end }
 ${ isset categories }<p>Categories: ${categories}</p>${ end }
 </div>
</script>
{{ end }}