search.json 622 B
---
layout: null
---
[
{% for post in site.posts %}
{
"headline" : "{{ post.headline }}",
"description" : "{{ post.description }}",
"tags" : "{{ post.tags }}",
"grade" : "{{ post.grade }}",
"date" : "{{ post.date | slice: 0,10 }}",
"categories" : "{{ post.categories | array_to_sentence_string }}",
"by" : "{{ post.by }}",
"url" : "{{ site.baseurl }}{{ post.url }}",
"icon" : "{{ post.icon }}",
"questions" : {{ post.questions | jsonify }}
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]