Files
v1.pivoine.art/search.json
2025-10-25 12:39:30 +02:00

19 lines
644 B
JSON
Executable File

---
layout: null
---
[
{% for post in site.posts %}
{
"id" : "{{ post.url }}",
"title" : "{{ post.title | escape }}",
"description" : "{{ post.description | escape }}",
"category" : "{{ post.categories | array_to_sentence_string }}",
"tags" : "{{ post.tags | array_to_sentence_string }}",
"url" : "{{ site.baseurl }}{{ post.url }}",
"image" : "{{ site.baseurl }}{{ post.image }}",
"date" : "{{ post.date | date: '%b %-d, %Y' }}",
"content" : "{{ post.content | strip_html | strip_newlines }}"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]