1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 01:58:50 +02:00
blog/_src/api/search.json
Matthias Kretschmann d504173527
kremalicious as a service
- output all posts with all metadata as json
2016-05-02 01:20:22 +02:00

18 lines
648 B
JSON

---
layout: null
---
[
{% for post in site.posts %}
{
"title" : "{{ post.title | strip_html | strip_newlines | titlecase }}",
"excerpt" : "{{ post.excerpt | strip_html | strip_newlines }}",
"category" : "{{ post.categories | join: ', ' }}",
"tag" : "{{ post.tags | join: ', ' }}",
"url" : "{{ site.url }}{{ post.url }}",
"date" : "{{ post.date }}",
"image" : "{{ post.image }}",
"content" : "{{ post.content | strip_html | strip_newlines | xml_escape }}"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]