1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-30 21:52:05 +02:00
blog/_src/search.json

13 lines
396 B
JSON
Raw Normal View History

2013-11-30 17:13:19 +01:00
---
---
[
{% for post in site.posts %}
{
2013-11-30 18:02:27 +01:00
"title" : "{{ post.title | escape }}",
"category" : "{{ post.categories }}",
"url" : "{{ post.url }}",
"date" : "{{ post.date }}",
"content" : "{{ post.content | strip_html | strip_newlines | escape }}"
2013-11-30 17:13:19 +01:00
} {% if forloop.last %}{% else %},{% endif %}
{% endfor %}
]