modif search.json
Some checks failed
Build and Deploy / build (push) Has been cancelled
Build and Deploy / deploy (push) Has been cancelled

This commit is contained in:
2026-04-18 14:08:07 +02:00
parent 7374651ad5
commit ac7f7e6111

View File

@@ -1,18 +1,14 @@
--- ---
layout: compress layout: none
swcache: true
--- ---
[ [
{% for post in site.posts %} {% for post in site.posts %}
{ {
"title": {{ post.title | jsonify }}, "title" : "{{ post.title | escape }}",
"url": {{ post.url | relative_url | jsonify }}, "categories" : "{{ post.categories }}",
"categories": {{ post.categories | join: ', ' | jsonify }}, "tags" : "{{ post.tags | join: ', ' }}",
"tags": {{ post.tags | join: ', ' | jsonify }}, "url" : "{{ site.baseurl }}{{ post.url }}",
"date": {{ post.date | jsonify }}, "date" : "{{ post.date }}"
{% capture content -%}{% include post-summary.html full_text=true %}{%- endcapture -%}
"content": {{ content | jsonify }}
} {% unless forloop.last %},{% endunless %} } {% unless forloop.last %},{% endunless %}
{% endfor %} {% endfor %}
] ]