18 lines
511 B
JSON
18 lines
511 B
JSON
---
|
|
layout: compress
|
|
swcache: true
|
|
---
|
|
[
|
|
{% for post in site.posts %}
|
|
{
|
|
"title" : "{{ post.title | escape }}",
|
|
"categories" : "{{ post.categories }}",
|
|
"tags" : "{{ post.tags | join: ', ' }}",
|
|
"url" : "{{ site.baseurl }}{{ post.url }}",
|
|
"date" : "{{ post.date }}",
|
|
{% capture content -%}{% include post-summary.html full_text=true %}{%- endcapture -%}
|
|
"content": {{ content | jsonify }}
|
|
} {% unless forloop.last %},{% endunless %}
|
|
{% endfor %}
|
|
]
|