19 lines
531 B
JSON
19 lines
531 B
JSON
---
|
|
layout: null
|
|
---
|
|
[
|
|
{% for post in site.posts %}
|
|
{
|
|
"title" : "{{ post.title | escape }}",
|
|
"description" : "{{ post.description }}",
|
|
"date" : "{{ post.date }}",
|
|
"categories" : "{{ post.categories | array_to_sentence_string }}",
|
|
"by" : "{{ post.by }}",
|
|
"url" : "{{ site.baseurl }}{{ post.url }}",
|
|
"icon" : "{{ post.icon }}",
|
|
"questions" : {{ post.questions | jsonify }}
|
|
|
|
} {% unless forloop.last %},{% endunless %}
|
|
{% endfor %}
|
|
]
|