mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-11 23:55:16 +01:00
15 lines
489 B
JSON
15 lines
489 B
JSON
---
|
|
layout: none
|
|
---
|
|
[
|
|
{% for post in site.posts %}
|
|
{
|
|
"title" : "{{ post.title | escape | titlecase }}",
|
|
"category" : "{{ post.categories }}",
|
|
"tag" : "{{ post.tags | join: ', ' }}",
|
|
"url" : "{{ site.url }}{{ post.url }}",
|
|
"date" : "{{ post.date }}",
|
|
"content" : "{{ post.content | strip_html | strip_newlines | escape }}"
|
|
} {% unless forloop.last %},{% endunless %}
|
|
{% endfor %}
|
|
] |