forked from aljfk1971/swissup.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.json
30 lines (29 loc) · 1.08 KB
/
search.json
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
---
---
[
{% for page in site.pages %}
{
{% if page.title != nil %}
"id" : "{% increment variable %}",
"title" : "{{ page.title | escape }}",
"description": "{{ page.description | escape | strip_newlines }}",
"keywords" : "{{ page.keywords | escape | strip_newlines }}",
"searchterms": "{{ page.searchterms | escape | strip_newlines }}",
"category" : "{{ page.category | escape }}",
"url" : "{{ page.url | prepend: site.baseurl }}"
{% endif %}
} {% unless forloop.last %},{% endunless %}
{% endfor %}
{% for page in site.posts %}
,{
{% if page.title != nil %}
"id" : "{% increment variable %}",
"title" : "{{ page.title | escape }}",
"description": "{{ page.description | escape | strip_newlines }}",
"keywords" : "{{ page.keywords | escape | strip_newlines }}",
"searchterms": "{{ page.searchterms | escape | strip_newlines }}",
"url" : "{{ page.url | prepend: site.baseurl }}"
{% endif %}
}
{% endfor %}
]