2023-01-30 15:49:35 -05:00

16 lines
540 B
JSON

---
layout: none
---
[
{% for post in site.notes %}
{
"title" : "{{ post.title | escape }}",
"category" : "{{ post.category }}",
"tags" : "{{ post.tags | join: ', ' }}",
"url" : "{{ site.baseurl }}{{ post.url }}",
"date" : "{{ post.date }}",
"content" : "{{ post.content | strip_html | strip_newlines | smartify }}",
"excerpt" : "{{ post.content | strip_html | strip_newlines | smartify | truncatewords: 10}}"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]