brouilleursdeblanc/search.json
2014-08-22 13:50:42 -04:00

15 lines
424 B
JSON

---
sitemap: false
---
[
{% for post in site.posts %}
{
"title" : "{{ post.title | escape }}",
"category" : "{{ post.category }}",
"tags" : "{{ post.tags | array_to_sentence_string }}",
"url" : "{{ site.url }}{{ post.url }}",
"date" : "{{ post.date }}",
"shortdate" : "{{ post.date | date: '%B %d, %Y' }}"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]