chirpy/assets/js/data/search.json
yann 43c6ce4b4e
Some checks failed
Build and Deploy / build (push) Has been cancelled
Build and Deploy / deploy (push) Has been cancelled
date modification et tri
2025-06-07 15:51:11 +02:00

26 lines
797 B
JSON

---
layout: compress
swcache: true
---
[
{% assign posts = site.posts | sort: 'last_modified_at' | reverse %}
{% for post in posts %}
{
"title": {{ post.title | jsonify }},
"url": {{ post.url | relative_url | jsonify }},
"categories": {{ post.categories | join: ', ' | jsonify }},
"tags": {{ post.tags | join: ', ' | jsonify }},
"date": "{{ post.date | date: '%d/%m/%Y' }}",
{% if post.last_modified_at %}
"datemodif": "{{ post.last_modified_at | date: '%d/%m/%Y' }}",
{% else %}
"datemodif": "",
{% endif %}
{% include no-linenos.html content=post.content %}
{% assign _content = content | strip_html | strip_newlines %}
"snippet": {{ _content | truncate: 200 | jsonify }}
}{% unless forloop.last %},{% endunless %}
{% endfor %}
]