1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- ?>
- <!--
- THIS FILE IS NOT USED AND IS HERE AS A STARTING POINT FOR CUSTOMIZATION ONLY.
- See http:
- After copying this file to your theme's folder and customizing it, remove this
- HTML comment.
- -->
- <!-- <section class="<?php print $classes; ?>"<?php print $attributes; ?>> -->
- <?php foreach ($items as $delta => $item): ?>
- <div class="<?php print $classes; ?> field-item <?php print $delta % 2 ? 'odd' : 'even'; ?>"<?php print $item_attributes[$delta]; ?>><?php print render($item); ?></div>
- <?php endforeach; ?>
- <!-- </section> -->
|