{% cycle 'one', 'two', 'three' %}
{% cycle 'one', 'two', 'three' %}
{% cycle 'one', 'two', 'three' %}
{% cycle 'one', 'two', 'three' %}
#=> one
#=> two
#=> three
#=> one
{% cycle 'group 1': 'one', 'two', 'three' %}
{% cycle 'group 1': 'one', 'two', 'three' %}
{% cycle 'group 2': 'one', 'two', 'three' %}
{% cycle 'group 2': 'one', 'two', 'three' %}
#=> one
#=> two
#=> one
#=> two
{% for i in (0..5) %}
{% cycle '1', '2', '3' %}
{% endfor %}
#=> 1
#=> 2
#=> 3
#=> 1
#=> 2
#=> 3