website/search.json

18 lines
431 B
JSON
Raw Normal View History

2019-08-13 15:16:48 +02:00
---
2021-08-23 11:07:05 +02:00
layout: none
2019-08-13 15:16:48 +02:00
---
[
{% for page in site.pages %}
{
{% if page.title != nil %}
{%- capture translated_title %}
{%- t page.title %}
{%- endcapture %}
"title" : "{{ translated_title | escape }}",
2019-08-13 15:16:48 +02:00
"tags" : "{{ page.tags | join: ', ' }}",
"url" : "{{ site.baseurl }}{{ page.url }}"
2019-08-13 15:16:48 +02:00
{% endif %}
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]