mirror of
https://github.com/minoplhy/crappy-reverie.git
synced 2024-11-14 13:26:57 +00:00
15 lines
466 B
JSON
15 lines
466 B
JSON
---
|
|
---
|
|
[
|
|
{% for post in site.posts %}
|
|
{% if post.hidden != true %}
|
|
{
|
|
|
|
"title" : "{% if post.title != "" %}{{ post.title | escape }}{% else %}{{ post.excerpt | strip_html | escape | strip }}{%endif%}",
|
|
"url" : "{{ site.baseurl }}{{ post.url }}",
|
|
"category" : "{{ post.categories | join: ', '}}",
|
|
"date" : "{{ post.date | date: "%B %e, %Y" }}"
|
|
} {% unless forloop.last %},{% endunless %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
] |