Skip to content

Instantly share code, notes, and snippets.

@jamestrevorlees
Last active March 17, 2017 13:31
Show Gist options
  • Save jamestrevorlees/877ebc167a364f336ef09fd90d7841f7 to your computer and use it in GitHub Desktop.
Save jamestrevorlees/877ebc167a364f336ef09fd90d7841f7 to your computer and use it in GitHub Desktop.
Loop through repeater field on timber and twig
<div class="col">
<ul>
{% set i = 1 %}
{% for item in post.get_field('home_what_band_bullets_section_a') %}
<li>{{ item.bullet_copy_text }}</li>
{% set i = i + 1 %}
{% endfor %}
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment