Skip to content

Instantly share code, notes, and snippets.

@BASICjfisher
Created December 3, 2013 02:25
Show Gist options
  • Save BASICjfisher/7762857 to your computer and use it in GitHub Desktop.
Save BASICjfisher/7762857 to your computer and use it in GitHub Desktop.
Liquid Template Demo
<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