Skip to content

Instantly share code, notes, and snippets.

@notjb
Forked from NikLP/zebra.html.twig
Last active February 25, 2021 12:55
Show Gist options
  • Save notjb/7155e62cac6b3ceb920b654dc5aa610d to your computer and use it in GitHub Desktop.
Save notjb/7155e62cac6b3ceb920b654dc5aa610d to your computer and use it in GitHub Desktop.
Set zebra-style (odd/even) classes in twig loop in drupal 8 (bootstrap) theme
<div{{ attributes.addClass('container') }}>
{% for item in items %}
{% set zebra_class = loop.index0 is odd ? 'zebra-odd' : 'zebra-even' %}
<div{{ item.attributes.addClass(zebra_class) }}>
{{ item.content }}
</div>
{% endfor %}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment