1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 10:08:50 +02:00
blog/_src/search.json
Matthias Kretschmann 9c2c3c49f9 fixing the search
what is it with people constantly changing their api option names
2015-05-25 22:15:46 +02:00

16 lines
533 B
JSON

---
layout: null
---
[
{% for post in site.posts %}
{
"title" : "{{ post.title | strip_html | strip_newlines | escape | titlecase }}",
"category" : "{{ post.categories | join: ', ' }}",
"tag" : "{{ post.tags | join: ', ' }}",
"url" : "{{ site.url }}{{ post.url }}",
"date" : "{{ post.date }}",
"content" : "{{ post.content | strip_html | strip_newlines | escape }}"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]