2019-06-24 18:26:41 +00:00
|
|
|
---
|
|
|
|
---
|
|
|
|
[
|
|
|
|
{% for post in site.posts %}
|
|
|
|
{
|
|
|
|
|
2019-08-08 06:51:01 +00:00
|
|
|
"title" : "{% if post.title != "" %}{{ post.title | escape }}{% else %}{{ post.excerpt | strip_html | escape | strip }}{%endif%}",
|
2019-06-24 18:26:41 +00:00
|
|
|
"url" : "{{ site.baseurl }}{{ post.url }}",
|
|
|
|
"category" : "{{ post.categories | join: ', '}}",
|
|
|
|
"date" : "{{ post.date | date: "%B %e, %Y" }}"
|
|
|
|
} {% unless forloop.last %},{% endunless %}
|
|
|
|
{% endfor %}
|
|
|
|
]
|