Created
December 3, 2013 02:25
-
-
Save BASICjfisher/7762857 to your computer and use it in GitHub Desktop.
Liquid Template Demo
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
<div class="slides"> | |
{% for post in site.categories['news'] %} | |
{% if post.image %} | |
<div class="slide" data-title="{{ post.title }}" data-time="{{ post.time }}"> | |
<img src="{{ post.image }}" /> | |
</div> | |
{% endif %} | |
{% endfor %} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment