-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
32 lines (27 loc) · 935 Bytes
/
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
---
layout: search
---
<section id="coding" class="lightbg">
<div class="main_blog text-center roomy-30">
<div class="head_title text-center">
<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 }}",
"date": "{{ post.date | date_to_string | xml_escape }}",
"category": "{{ post.category | xml_escape }}",
"content": {{ post.excerpt | strip_html | strip_newlines | jsonify }},
"url": "{{ post.url | xml_escape }}"
}
{% unless forloop.last %},{% endunless %}
{% endfor %}
};
</script>
</div>
</div>
</section>
<script src="/assets/js/lunr.min.js"></script>
<script src="/assets/js/search.js"></script>