2023-01-06 14:30:50 +01:00

14 lines
477 B
Plaintext

---
permalink: netlify/functions/search/data.json
permalinkBypassOutputDir: true
eleventyExcludeFromCollections: true
---
[{% for post in collections.note %}
{
"title": {% if post.data.title %}{{post.data.title | jsonify | safe }}{% else %}{{post.fileSlug | jsonify | safe }}{% endif %},
"date":"{{ post.date }}",
"url":"{{ post.url }}",
"content": {{ post.templateContent | striptags(true) | link | jsonify | safe }}
}{% if not loop.last %},{% endif %}
{% endfor %}]