EclipseGc

Untitled

May 3rd, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  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