2013-09-11 16:12:08 +00:00
|
|
|
---
|
2014-08-08 19:52:28 +00:00
|
|
|
sitemap: false
|
2013-09-11 16:12:08 +00:00
|
|
|
---
|
|
|
|
[
|
|
|
|
{% for post in site.posts %}
|
|
|
|
{
|
|
|
|
"title" : "{{ post.title | escape }}",
|
|
|
|
"category" : "{{ post.category }}",
|
2014-08-22 17:50:42 +00:00
|
|
|
"tags" : "{{ post.tags | array_to_sentence_string }}",
|
2013-09-11 20:23:29 +00:00
|
|
|
"url" : "{{ site.url }}{{ post.url }}",
|
2013-09-11 16:12:08 +00:00
|
|
|
"date" : "{{ post.date }}",
|
|
|
|
"shortdate" : "{{ post.date | date: '%B %d, %Y' }}"
|
2014-08-20 01:34:30 +00:00
|
|
|
} {% unless forloop.last %},{% endunless %}
|
2013-09-11 16:12:08 +00:00
|
|
|
{% endfor %}
|
2014-08-20 01:34:30 +00:00
|
|
|
]
|