mirror of
https://github.com/apache/lucene.git
synced 2025-02-11 04:25:40 +00:00
22 lines
374 B
JSON
22 lines
374 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 | remove: "/"}}",
|
|||
"summary": "{{page.summary | strip }}"
|
|||
}
|
|||
{% unless forloop.last %},{% endunless %}
|
|||
{% endunless %}
|
|||
{% endfor %}
|
|||
|
|||
]
|