Skip to content

Instantly share code, notes, and snippets.

@talha131
Created August 28, 2013 22:50
Show Gist options
  • Save talha131/6372388 to your computer and use it in GitHub Desktop.
Save talha131/6372388 to your computer and use it in GitHub Desktop.
{% for pair in article.featuredimage.split(',') %}
{% set parilist = loop.cycle(pair.split(':')) %}
<li>
<img src="{{ASSETSURL}}/media/photos/{{pairlist[0]}}" alt="{{article.title}}">
<p class="caption">{{pairlist[1]}}</p>
</li>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment