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

14 lines
451 B
JSON
Raw Normal View History

2013-11-30 17:13:19 +01:00
---
---
[
{% for post in site.posts %}
{
"title" : "{{ post.title | escape | titlecase }}",
2013-11-30 18:02:27 +01:00
"category" : "{{ post.categories }}",
2013-12-01 21:46:31 +01:00
"tag" : "{{ post.tags }}",
2013-11-30 18:02:27 +01:00
"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 %}
]