Parent Directory
|
Revision Log
|
Revision Graph
#315784 by pebosi: Fix typo in new row classes
| 1 | <?php |
| 2 | // $Id: views-view-unformatted.tpl.php,v 1.5 2008/09/30 19:47:11 merlinofchaos Exp $ |
| 3 | /** |
| 4 | * @file views-view-unformatted.tpl.php |
| 5 | * Default simple view template to display a list of rows. |
| 6 | * |
| 7 | * @ingroup views_templates |
| 8 | */ |
| 9 | ?> |
| 10 | <?php if (!empty($title)): ?> |
| 11 | <h3><?php print $title; ?></h3> |
| 12 | <?php endif; ?> |
| 13 | <?php foreach ($rows as $id => $row): ?> |
| 14 | <div class="<?php print $classes[$id]; ?>"> |
| 15 | <?php print $row; ?> |
| 16 | </div> |
| 17 | <?php endforeach; ?> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |