mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
13 lines
329 B
JSON
13 lines
329 B
JSON
|
---
|
||
|
---
|
||
|
[
|
||
|
{% for post in site.posts %}
|
||
|
{
|
||
|
"title" : "{{ post.title | escape }}",
|
||
|
"category" : "{{ post.category }}",
|
||
|
"url" : "{{ post.url }}",
|
||
|
"date" : "{{ post.date }}",
|
||
|
"shortdate" : "{{ post.date | date: '%B %d, %Y' }}"
|
||
|
} {% if forloop.last %}{% else %},{% endif %}
|
||
|
{% endfor %}
|
||
|
]
|