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 %}