search.json (443B)
1 --- 2 layout: null 3 --- 4 [ 5 {% for post in site.posts %} 6 { 7 8 "title" : "{{ post.title | strip_html | escape }}", 9 "description" : "{{ post.description | escape }}", 10 "url" : "{{ site.baseurl }}{{ post.url }}", 11 "category" : "{{post.categories | join: ', '}}", 12 "tags" : "{{ post.tags | join: ', ' }}", 13 "date" : "{{ post.date }}" 14 15 } {% unless forloop.last %},{% endunless %} 16 {% endfor %} 17 ]