Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 1 {% if items %}
- 2 <{{ type }}
- 3 {{- items.attributes.class ? ' class="{{ items.attributes.class }}"' : '' -}}
- 4 {{- items.attributes ? " items.attributes" : '' -}}
- 5 >
- 6 {% for item in items %}
- 7 <li class="{{ item.attributes.class }} {{ cycle(['even', 'odd'], loop.index) }}{{ loop.first ? ' first' : '' }}{{ loop.last ? ' last' : '' }}" {{ item.attributes }}>
- 8 {{- item -}}
- 9 </li>
- 10 {% endfor %}
- 11 </{{ type }}>
- 12 {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment