mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-08-07 08:51:24 +00:00
18 lines
448 B
JSON
18 lines
448 B
JSON
---
|
|
layout: compress
|
|
swcache: true
|
|
---
|
|
|
|
[
|
|
{% for post in site.posts %}
|
|
{
|
|
"title": {{ post.title | jsonify }},
|
|
"url": {{ post.url | relative_url | jsonify }},
|
|
"categories": {{ post.categories | join: ', ' | jsonify }},
|
|
"tags": {{ post.tags | join: ', ' | jsonify }},
|
|
"date": {{ post.date | jsonify }},
|
|
"content": {% include post-description.html json=true %}
|
|
}{% unless forloop.last %},{% endunless %}
|
|
{% endfor %}
|
|
]
|