-
Notifications
You must be signed in to change notification settings - Fork 7
/
search.html
47 lines (40 loc) · 1.44 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
38
39
40
41
42
43
44
45
46
47
---
title: Cari
layout: info
permalink: search/
---
<div class="container" style="margin-top: 30px;">
<div class="row m-b-lg">
<div class="col-lg-12 text-center">
<div class="navy-line"></div>
<h1>Cari</h1>
</div>
</div>
<div class="row m-b-lg">
<div class="col-md-12">
<div class="search">
<form action="/search/" method="get">
<input type="text" id="search-box" placeholder="Cari judul laporan, judul & kategori artikel, serta nama penulis..." name="query" class="form-control">
<!-- <input type="submit" value="Cari"> -->
</form>
<hr>
<ul id="search-results"></ul>
<script>
window.store = {
{% for post in site.posts %}
"{{ post.url | slugify }}": {
"title": "{{ post.title | xml_escape }}",
"author": "{{ post.author | xml_escape }}",
"category": "{{ post.category | xml_escape }}",
"url": "{{ post.url | xml_escape }}"
}
{% unless forloop.last %},{% endunless %}
{% endfor %}
};
</script>
<script src="/static/js/lunr.min.js"></script>
<script src="/static/js/search.js"></script>
</div>
</div>
</div>
</div>