123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- ?>
- <?php if(count($items)): ?>
- <section class="<?php print $classes; ?>"<?php print $attributes; ?>>
- <?php if (!$label_hidden): ?>
- <div class="field-label"<?php print $title_attributes; ?>><?php print $label ?>: </div>
- <?php endif; ?>
- <?php if(count($items)>1): ?>
- <div class="field-items"<?php print $content_attributes; ?>>
- <?php foreach ($items as $delta => $item): ?>
- <div class="field-item <?php print $delta % 2 ? 'odd' : 'even'; ?>"<?php print $item_attributes[$delta]; ?>><?php print render($item); ?></div>
- <?php endforeach; ?>
- </div>
- <?php endif; ?>
- <?php if(count($items)==1): ?>
- <?php foreach ($items as $delta => $item): ?>
- <?php print render($item); ?>
- <?php endforeach; ?>
- <?php endif; ?>
- </section>
- <?php endif; ?>
|