| 1 |
|
<?php |
| 2 |
|
// $Id: views-view-list.tpl.php,v 1.3 2008/09/30 19:47:11 merlinofchaos Exp $ |
| 3 |
|
/** |
| 4 |
|
* @file views-view-jcarousellite.tpl.php |
| 5 |
|
* Default simple view template to display a list of rows. |
| 6 |
|
* |
| 7 |
|
* - $title : The title of this group of rows. May be empty. |
| 8 |
|
* - $options['type'] will either be ul or ol. |
| 9 |
|
* @ingroup views_templates |
| 10 |
|
*/ |
| 11 |
|
?> |
| 12 |
|
<div class="item-list"> |
| 13 |
|
<?php if (!empty($title)) : ?> |
| 14 |
|
<h3><?php print $title; ?></h3> |
| 15 |
|
<?php endif; ?> |
| 16 |
|
<<?php print $options['type']; ?>> |
| 17 |
|
<?php foreach ($rows as $id1 => $row): ?> |
| 18 |
|
<li class="<?php print $classes[$id1]; ?>"> |
| 19 |
|
<div> |
| 20 |
|
<?php foreach ($row as $id2 => $l): ?> |
| 21 |
|
<div><?php print $l; ?></div> |
| 22 |
|
<?php endforeach; ?> |
| 23 |
|
</div> |
| 24 |
|
<?php endforeach; ?> |
| 25 |
|
</li> |
| 26 |
|
</<?php print $options['type']; ?>> |
| 27 |
|
</div> |