blob: 0920bf8d83b7b09cee18000f3d144c68158f1f6d (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
---
---
{
"posts": [
{% for post in site.posts %}
{
"title": "{{ post.title | smartify }}",
"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 %}
]
}
|