Files
makyo.ink/jekyll/search.json
Madison Scott-Clary 4386102543 hugo site
2019-03-06 00:31:57 -08:00

16 lines
424 B
JSON

---
layout: null
---
[
{% for post in site.posts %}
{
"title" : "{{ post.title | escape }}",
"description": "{{ post.description | escape }}",
"category" : "{{ post.category }}",
"tags" : "{{ post.tags | join: ', ' }}",
"url" : "{{ site.baseurl }}{{ post.url }}",
"date" : "{{ post.date }}"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]