2013-11-30 17:13:19 +01:00
|
|
|
---
|
2015-05-25 22:15:46 +02:00
|
|
|
layout: null
|
2013-11-30 17:13:19 +01:00
|
|
|
---
|
|
|
|
[
|
|
|
|
{% for post in site.posts %}
|
|
|
|
{
|
2015-08-09 18:15:40 +02:00
|
|
|
"title" : "{{ post.title | strip_html | strip_newlines | titlecase }}",
|
2015-05-25 21:22:55 +02:00
|
|
|
"category" : "{{ post.categories | join: ', ' }}",
|
2015-04-17 21:01:58 +02:00
|
|
|
"tag" : "{{ post.tags | join: ', ' }}",
|
|
|
|
"url" : "{{ site.url }}{{ post.url }}",
|
2013-11-30 18:02:27 +01:00
|
|
|
"date" : "{{ post.date }}",
|
|
|
|
"content" : "{{ post.content | strip_html | strip_newlines | escape }}"
|
2015-04-17 21:01:58 +02:00
|
|
|
} {% unless forloop.last %},{% endunless %}
|
2013-11-30 17:13:19 +01:00
|
|
|
{% endfor %}
|
2015-05-25 21:22:55 +02:00
|
|
|
]
|