2019-09-30 15:38:41 +03:00
|
|
|
---
|
2020-05-29 19:48:10 +03:00
|
|
|
layout: compress
|
2022-02-02 20:31:53 +03:00
|
|
|
swcache: true
|
2019-09-30 15:38:41 +03:00
|
|
|
---
|
2019-12-31 18:17:27 +03:00
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
[
|
|
|
|
{% for post in site.posts %}
|
|
|
|
{
|
2022-03-03 16:49:05 +03:00
|
|
|
"title": {{ post.title | jsonify }},
|
|
|
|
"url": {{ post.url | relative_url | jsonify }},
|
|
|
|
"categories": {{ post.categories | join: ', ' | jsonify }},
|
|
|
|
"tags": {{ post.tags | join: ', ' | jsonify }},
|
2019-12-31 18:17:27 +03:00
|
|
|
"date": "{{ post.date }}",
|
2020-07-22 16:41:49 +03:00
|
|
|
{% include no-linenos.html content=post.content %}
|
2022-03-03 16:49:05 +03:00
|
|
|
"snippet": {{ content | strip_html | strip_newlines | jsonify }}
|
2019-09-30 15:38:41 +03:00
|
|
|
}{% unless forloop.last %},{% endunless %}
|
|
|
|
{% endfor %}
|
|
|
|
]
|