Files
Chirpy/assets/js/data/search.json
yann ee61f8fff8
Some checks failed
Build and Deploy / build (push) Has been cancelled
Build and Deploy / deploy (push) Has been cancelled
post-summary.html
2026-04-18 17:12:15 +02:00

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 %}
]