2016-09-13 20:31:36 +03:00
|
|
|
---
|
|
|
|
---
|
|
|
|
|
|
|
|
[
|
|
|
|
{% for post in site.posts %}
|
|
|
|
{
|
|
|
|
"id": "{{ post.id | slugify }}",
|
|
|
|
"categories": {{ post.categories | jsonify }},
|
|
|
|
"author": {{ post.author | jsonify }},
|
|
|
|
"title": {{ post.title | jsonify }},
|
|
|
|
"excerpt": {{ post.excerpt | jsonify }},
|
|
|
|
"verticals": {{ post.verticals | jsonify }},
|
2016-09-15 22:39:24 +03:00
|
|
|
"language": {{ post.language | jsonify }},
|
|
|
|
"content": {{ post.content | strip_html | jsonify }}
|
2016-09-13 20:31:36 +03:00
|
|
|
}{% unless forloop.last %},{% endunless %}
|
|
|
|
{% endfor %}
|
|
|
|
]
|