Skip to content

Instantly share code, notes, and snippets.

@sskylar
Last active November 29, 2017 16:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sskylar/18c8fbe39b8c9eaf4437915434e2562f to your computer and use it in GitHub Desktop.
Save sskylar/18c8fbe39b8c9eaf4437915434e2562f to your computer and use it in GitHub Desktop.
Output posts JSON feed using Jekyll / Siteleaf
---
---
[
{% for post in site.posts limit:10 %}
{
"title": {{ post.title | jsonify }},
"url": {{ post.url | jsonify }}
}
{% unless forloop.last %},{% endunless %}
{% endfor %}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment