blob: 30a7260c1a0c844a7b1351b6cfb387042edfab17 (
plain) (
tree)
|
|
---
---
{
"posts": [
{% for post in site.posts %}
{
"title": "{{ post.title | smartify }}",
"date": "{{ post.date }}",
"url": "{{ post.url }}",
"lang": "{{ post.lang }}",
"ref": "{{ post.ref }}",
"content": {{ post.content | strip_html | jsonify }}
}{% unless forloop.last %},{% endunless %}
{% endfor %}
],
"pages": [
{% for page in site.pages %}
{
"title": "{{ page.title | smartify }}",
"url": "{{ page.url }}",
"lang": "{{ page.lang }}",
"ref": "{{ page.ref }}",
"content": {{ page.content | strip_html | jsonify }}
}{% unless forloop.last %},{% endunless %}
{% endfor %}
]
}
|