6774e0e1fb
Resolves #741
20 lines
597 B
JSON
20 lines
597 B
JSON
---
|
|
layout: compress
|
|
swcache: true
|
|
---
|
|
|
|
[
|
|
{% for post in site.posts %}
|
|
{
|
|
"title": {{ post.title | jsonify }},
|
|
"url": {{ post.url | relative_url | jsonify }},
|
|
"categories": {{ post.categories | join: ', ' | jsonify }},
|
|
"tags": {{ post.tags | join: ', ' | jsonify }},
|
|
"date": "{{ post.date }}",
|
|
{% include no-linenos.html content=post.content %}
|
|
{% assign _content = content | strip_html | strip_newlines %}
|
|
"snippet": {{ _content | truncate: 200 | jsonify }},
|
|
"content": {{ _content | jsonify }}
|
|
}{% unless forloop.last %},{% endunless %}
|
|
{% endfor %}
|
|
]
|