{
  {% for archive in page.archives %}
  "{{ archive[0] }}": [
    {% for post in archive[1]%}
    {
      "id": "{{ post.id }}"
      "title": "{{ post.title }}",
      "url": "{{ post.url }}",
      "date": "{{ post.date | date_to_long_string }}",
      "categories": "{{ post.categories | join: ", " }}",
      "excerpt": "{{ post.content | strip_html | strip_newlines | xml_escape |truncate: 110 }}"
    }{% unless forloop.last %},{% endunless %}
    {% endfor %}
  ]{% unless forloop.last %},{% endunless %}
  {% endfor %}
}
