mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-06-08 00:27:58 +00:00
15 lines
342 B
JSON
15 lines
342 B
JSON
---
|
|
layout: compress
|
|
---
|
|
[
|
|
{% for post in site.posts %}
|
|
{
|
|
"title": "{{ post.title | escape }}",
|
|
"url": "{{ site.baseurl }}{{ post.url }}",
|
|
"categories": "{{ post.categories | join: ', '}}",
|
|
"tags": "{{ post.tags | join: ', ' }}",
|
|
"date": "{{ post.date }}"
|
|
}{% unless forloop.last %},{% endunless %}
|
|
{% endfor %}
|
|
]
|