brouilleursdeblanc/search.json
2013-09-12 08:17:48 -04:00

14 lines
No EOL
380 B
JSON

---
---
[
{% for post in site.posts %}
{
"siteurl" : "{{ site.url }}",
"title" : "{{ post.title | escape }}",
"category" : "{{ post.category }}",
"url" : "{{ site.url }}{{ post.url }}",
"date" : "{{ post.date }}",
"shortdate" : "{{ post.date | date: '%B %d, %Y' }}"
} {% if forloop.last %}{% else %},{% endif %}
{% endfor %}
]