summaryrefslogtreecommitdiffstats
path: root/search.json
blob: 8f8fb93b9088e9ebe369e2d096347b524491e19a (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
29
30
31
32
33
---
title: search
layout: none
search: exclude
---

[

{% for page in site.pages %}
{% unless page.search == "exclude" or page.url contains "_info.html" or page.url contains "_install.html" or page.url contains "_build.html" or page.url contains "devices.html" or page.url contains ".css" %}
{% if forloop.index0 > 1 %}, {% endif %}
{
"title": "{{ page.title | escape }}",
"tags": "{{ page.tags }}",
"keywords": "{{page.keywords}}",
"url": "{{ page.url | relative_url }}",
"summary": "{{page.summary | strip }}"
}
{% endunless %}
{% endfor %}

{% for post in site.posts %}
{
"title": "{{ post.title | escape }}",
"tags": "{{ post.tags }}",
"keywords": "{{post.keywords}}",
"url": "{{ post.url }}",
"summary": "{{post.summary | strip }}"
}
{% unless forloop.last %},{% endunless %}
{% endfor %}

]