web/assets/js/data/search.json

21 lines
511 B
JSON
Raw Normal View History

2019-09-30 20:38:41 +08:00
---
layout: compress
2022-02-03 01:31:53 +08:00
swcache: true
2019-09-30 20:38:41 +08:00
---
2019-09-30 20:38:41 +08:00
[
{% for post in site.posts %}
{%- capture description -%}
{% include post-description.html %}
{%- endcapture -%}
2019-09-30 20:38:41 +08:00
{
"title": {{ post.title | jsonify }},
"url": {{ post.url | relative_url | jsonify }},
"categories": {{ post.categories | join: ', ' | jsonify }},
"tags": {{ post.tags | join: ', ' | jsonify }},
"date": "{{ post.date }}",
"content": "{{ description }}"
2019-09-30 20:38:41 +08:00
}{% unless forloop.last %},{% endunless %}
{% endfor %}
]