Lego2012
2/3/2017 - 4:18 PM

Even/odd items in for loop

Even/odd items in for loop

{% for item in site.posts %}
  {% capture thecycle %}{% cycle 'odd', 'even' %}{% endcapture %}
  {% if thecycle == 'odd' %}
    <div>echo something</div>
  {% endif %}
{% endfor %}