Created
December 31, 2012 02:26
-
-
Save LukeWinikates/4416936 to your computer and use it in GitHub Desktop.
Example of liquid template for generating JSON -- not pretty, but effective
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 }}", "url": "{{ post.url}}" }, | |
{% endfor %} | |
null | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment