mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-12 08:05:18 +01:00
16 lines
524 B
JSON
16 lines
524 B
JSON
---
|
|
layout: null
|
|
---
|
|
[
|
|
{% for post in site.posts %}
|
|
{
|
|
"title" : "{{ post.title | strip_html | strip_newlines | titlecase }}",
|
|
"category" : "{{ post.categories | join: ', ' }}",
|
|
"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 %}
|
|
]
|