Tags to menu, p styling, search

This commit is contained in:
Madison Scott-Clary
2018-01-25 22:34:41 -08:00
parent 938b939ee0
commit b76ec801e8
3 changed files with 8 additions and 6 deletions

View File

@ -4,11 +4,12 @@ layout: null
[
{% for post in site.posts %}
{
"title" : "{{ post.title | escape }}",
"category" : "{{ post.category }}",
"tags" : "{{ post.tags | join: ', ' }}",
"url" : "{{ site.baseurl }}{{ post.url }}",
"date" : "{{ post.date }}"
"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 %}
]