41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
---
|
|
layout: none
|
|
search: false
|
|
---
|
|
[
|
|
{% for page in site.pages %}
|
|
{% if page.search == true %}
|
|
{
|
|
"title": "{{ page.title | escape }}",
|
|
"tags": "{{ page.tags }}",
|
|
"keywords": "{{page.keywords}}",
|
|
"url": "{{ site.baseurl }}{{ page.url }}",
|
|
"last_updated": "{{ page.last_updated }}",
|
|
"summary": "{{page.summary}}",
|
|
"body": "{{ page.content | strip_html | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' }}"
|
|
}
|
|
{% unless forloop.last %},{% endunless %}
|
|
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% for post in site.posts %}
|
|
{% if forloop.length != 0 and forloop.first %},{% endif %}
|
|
|
|
{% if post.search == true %}
|
|
{
|
|
"title": "{{ page.title | escape }}",
|
|
"tags": "{{ page.tags }}",
|
|
"keywords": "{{page.keywords}}",
|
|
"url": "{{ site.baseurl }}{{ page.url }}",
|
|
"last_updated": "{{ page.last_updated }}",
|
|
"summary": "{{page.summary}}",
|
|
"body": "{{ page.content | strip_html | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' }}"
|
|
} {% unless forloop.last %},{% endunless %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
]
|
|
|
|
|
|
|