krata/search.json

15 lines
342 B
JSON
Raw Normal View History

2019-09-30 14:38:41 +02:00
---
layout: compress
---
[
{% for post in site.posts %}
{
"title": "{{ post.title | escape }}",
"url": "{{ site.baseurl }}{{ post.url }}",
"categories": "{{ post.categories | join: ', '}}",
"tags": "{{ post.tags | join: ', ' }}",
"date": "{{ post.date }}"
}{% unless forloop.last %},{% endunless %}
{% endfor %}
]