You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
492 B
15 lines
492 B
---
|
|
---
|
|
[
|
|
{% for post in site.posts %}{% unless post.layout == "encrypt" %}
|
|
{
|
|
"title" : "{{ post.title | escape }}",
|
|
"category" : "{{ post.category }}",
|
|
"tags" : "{{ post.tags | join: ', ' }}",
|
|
"url" : "{{ site.baseurl }}{{ post.url }}",
|
|
"date" : "{{ post.date | date: "%Y/%m/%d" }}",
|
|
"content": {{ post.content | strip_html | strip_newlines | jsonify }}
|
|
}{% unless forloop.last %},{% endunless %}{% endunless %}
|
|
{% endfor %}
|
|
]
|