15 lines
374 B
JSON
15 lines
374 B
JSON
---
|
|
layout: none
|
|
---
|
|
|
|
[
|
|
{% for post in site.posts %}
|
|
{
|
|
"title" : "{{ post.title | escape }}",
|
|
"description" : "{{ post.description | escape }}",
|
|
"tags" : "{{ post.tags | join: ', ' }}",
|
|
"url" : "{{ site.baseurl }}{{ post.url }}",
|
|
"date" : "{{ post.date }}"
|
|
} {% unless forloop.last %},{% endunless %}
|
|
{% endfor %}
|
|
]
|