layout: null


{% assign date_format = site.minima.date_format | default: “%b %-d, %Y” %} [

{% for post in site.posts %}
  {
    "title"    : "{{ post.title | escape }}",
    "content"  : "{{ post.content | slugify | split: '-' | uniq | join }}",
    "category" : "{{ post.category }}",
    "tags"     : "{{ post.tags | join: ', ' }}",
    "url"      : "{{ post.url | relative_url }}",
    "date"     : "{{ post.date | date: date_format }}"
  } {% unless forloop.last %},{% endunless %}
{% endfor %}

]