27 lines
508 B
JSON
27 lines
508 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 | prepend: '..' }}",
|
|
"summary": "{{page.summary}}"
|
|
},
|
|
{% endunless %}
|
|
|
|
{% endfor %}
|
|
null
|
|
]
|
|
|
|
{% comment %} Removed:
|
|
|
|
"body": "{{ page.content | strip| strip_html | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' | replace: '^t', ' '}}"
|
|
{% endcomment %}
|