mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
a9ab8b7bf7
- Fixes #88 - Replace overlay with dedicated search page (see /search/index.md) - Replace simpleJekyllSearch.js - Include pages in search.json index
25 lines
755 B
JSON
25 lines
755 B
JSON
---
|
|
sitemap: false
|
|
---
|
|
|
|
[
|
|
{% for post in site.posts %}
|
|
{% if post.title != null and post.title != empty and post.search_omit != true %}
|
|
{% if forloop.index > 1 %},{% endif %}{
|
|
"title" : {{ post.title | jsonify }},
|
|
"link" : "{{ site.url }}{{ post.url }}",
|
|
"excerpt" : "{{ post.excerpt }}"
|
|
}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{% for page in site.pages %}
|
|
{% if page.layout != 'none' and page.layout != 'none' and page.title != null and page.title != empty and page.search_omit != true %}
|
|
{% if forloop.index > 1 %},{% endif %}{
|
|
"title" : {{ page.title | jsonify }},
|
|
"link" : "{{ site.url }}{{ page.url | replace: 'index.html', '' }}",
|
|
"excerpt" : "{{ page.excerpt }}"
|
|
}
|
|
{%endif%}
|
|
{% endfor %}
|
|
]
|