{% for post in site.posts reversed %} {% capture thecycle %}{% cycle 'odd', 'even' %}{% endcapture %} {% if thecycle == 'odd' %}

{{ post.title }}

{{ post.content }}
{% else %}

{{ post.title }}

{{ post.content }}
{% endif %} {% endfor %}