Created
May 23, 2015 01:31
-
-
Save jennifert/38c507876ee4459abeda to your computer and use it in GitHub Desktop.
Also grabbed form my github repor for easy embed to site.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
--- | |
[ | |
{% for post in site.posts %} | |
{ | |
"title" : "{{ post.title }}", | |
"href" : "{{ post.url }}", | |
"summary" : "{{ post.content | strip_html | strip_newlines | truncatewords: 30 | escape }}", | |
"category" : [{% for category in post.categories %}"{{ category }}",{% endfor %} null], | |
"tags" : [{% for tag in post.tags %}"{{ tag }}",{% endfor %} null], | |
"date" : "{{ post.date | date: "%b %-d, %Y" }}" | |
} | |
{% unless forloop.last %},{% endunless %} | |
{% endfor %} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment