Guest User

Untitled

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