mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
9742a2ebaf
This changes was merged in the original repo at https://github.com/christian-fei/Simple-Jekyll-Search/pull/6
14 lines
357 B
JSON
14 lines
357 B
JSON
---
|
|
sitemap: false
|
|
---
|
|
[
|
|
{% for post in site.posts %}
|
|
{
|
|
"title" : "{{ post.title | escape }}",
|
|
"category" : "{{ post.category }}",
|
|
"url" : "{{ site.url }}{{ post.url }}",
|
|
"date" : "{{ post.date }}",
|
|
"shortdate" : "{{ post.date | date: '%B %d, %Y' }}"
|
|
} {% unless forloop.last %},{% endunless %}
|
|
{% endfor %}
|
|
]
|