2019-09-30 20:38:41 +08:00
|
|
|
---
|
2020-05-30 00:48:10 +08:00
|
|
|
layout: compress
|
2022-02-03 01:31:53 +08:00
|
|
|
swcache: true
|
2019-09-30 20:38:41 +08:00
|
|
|
---
|
2019-12-31 23:17:27 +08:00
|
|
|
|
2019-09-30 20:38:41 +08:00
|
|
|
[
|
|
|
|
{% for post in site.posts %}
|
2025-01-20 21:15:51 +08:00
|
|
|
{%- capture description -%}
|
|
|
|
{% include post-description.html %}
|
|
|
|
{%- endcapture -%}
|
2019-09-30 20:38:41 +08:00
|
|
|
{
|
2022-03-03 13:49:05 +00:00
|
|
|
"title": {{ post.title | jsonify }},
|
|
|
|
"url": {{ post.url | relative_url | jsonify }},
|
|
|
|
"categories": {{ post.categories | join: ', ' | jsonify }},
|
|
|
|
"tags": {{ post.tags | join: ', ' | jsonify }},
|
2019-12-31 23:17:27 +08:00
|
|
|
"date": "{{ post.date }}",
|
2025-01-20 21:15:51 +08:00
|
|
|
"content": "{{ description }}"
|
2019-09-30 20:38:41 +08:00
|
|
|
}{% unless forloop.last %},{% endunless %}
|
|
|
|
{% endfor %}
|
|
|
|
]
|