123456789101112131415161718192021 |
- <?php
- ?>
- <?php print $wrapper_prefix; ?>
- <?php if (!empty($title)) : ?>
- <h3><?php print $title; ?></h3>
- <?php endif; ?>
- <?php print $list_type_prefix; ?>
- <?php foreach ($rows as $id => $row): ?>
- <li class="<?php print $classes_array[$id]; ?>"><?php print $row; ?></li>
- <?php endforeach; ?>
- <?php print $list_type_suffix; ?>
- <?php print $wrapper_suffix; ?>
|