techcasestudies/posts.json

17 строки
520 B
JSON
Исходник Обычный вид История

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 }},
"language": {{ post.language | jsonify }},
"content": {{ post.content | strip_html | jsonify }}
2016-09-13 20:31:36 +03:00
}{% unless forloop.last %},{% endunless %}
{% endfor %}
]