24 lines
440 B
JSON
24 lines
440 B
JSON
---
|
|
title: search
|
|
layout: none
|
|
search: exclude
|
|
---
|
|
[
|
|
{% for page in site.pages %}
|
|
{% unless page.search == "exclude" %}
|
|
{
|
|
"title": "{{ page.title | escape }}",
|
|
"tags": "{{ page.tags }}",
|
|
"keywords": "{{page.keywords}}",
|
|
"url": "{{ page.url | replace: '/','' }}",
|
|
"summary": "{{page.summary}}",
|
|
"body": "{{ page.content | strip_html | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' }}"
|
|
},
|
|
{% endunless %}
|
|
|
|
{% endfor %}
|
|
null
|
|
]
|
|
|
|
|