a new start

This commit is contained in:
2025-10-25 12:39:30 +02:00
commit c97cadef78
726 changed files with 454051 additions and 0 deletions

18
search.json Executable file
View File

@@ -0,0 +1,18 @@
---
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 %}
]