1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 18:18:49 +02:00
blog/_src/search.json

16 lines
524 B
JSON
Raw Normal View History

2013-11-30 17:13:19 +01:00
---
layout: null
2013-11-30 17:13:19 +01:00
---
[
{% for post in site.posts %}
{
2015-08-09 18:15:40 +02:00
"title" : "{{ post.title | strip_html | strip_newlines | titlecase }}",
"category" : "{{ post.categories | join: ', ' }}",
2015-04-17 21:01:58 +02:00
"tag" : "{{ post.tags | join: ', ' }}",
"url" : "{{ site.url }}{{ post.url }}",
2013-11-30 18:02:27 +01:00
"date" : "{{ post.date }}",
"content" : "{{ post.content | strip_html | strip_newlines | escape }}"
2015-04-17 21:01:58 +02:00
} {% unless forloop.last %},{% endunless %}
2013-11-30 17:13:19 +01:00
{% endfor %}
]