2016-05-02 01:05:53 +02:00
|
|
|
---
|
|
|
|
layout: null
|
|
|
|
---
|
|
|
|
[
|
|
|
|
{% for post in site.posts %}
|
|
|
|
{
|
|
|
|
"title" : {{ post.title | titlecase | jsonify }},
|
|
|
|
"excerpt" : {{ post.excerpt | jsonify }},
|
|
|
|
"category" : "{{ post.categories | join: ', ' }}",
|
|
|
|
"tag" : "{{ post.tags | join: ', ' }}",
|
|
|
|
"url" : "{{ site.url }}{{ post.url }}",
|
|
|
|
"date" : "{{ post.date }}",
|
|
|
|
"content" : {{ post.content | jsonify }},
|
|
|
|
"image" : "{{ post.image }}",
|
|
|
|
"author" : "{{ post.author }}",
|
|
|
|
"layout" : "{{ post.layout }}",
|
|
|
|
"id" : "{{ post.id }}",
|
|
|
|
"path" : "{{ post.path }}",
|
2016-05-02 01:40:32 +02:00
|
|
|
"download" : "{{ post.download }}",
|
|
|
|
"linkurl" : "{{ post.linkurl }}"
|
2016-05-02 01:05:53 +02:00
|
|
|
} {% unless forloop.last %},{% endunless %}
|
|
|
|
{% endfor %}
|
|
|
|
]
|