You are here

views-view-list.tpl.php in Drupal Commons 6.2

views-view-list.tpl.php Default simple view template to display a list of rows.

  • $title : The title of this group of rows. May be empty.
  • $options['type'] will either be ul or ol.

File

themes/commons_connect/views-view-list.tpl.php
View source
<?php

// $Id: views-view-list.tpl.php,v 1.3 2008/09/30 19:47:11 merlinofchaos Exp $

/**
 * @file views-view-list.tpl.php
 * Default simple view template to display a list of rows.
 *
 * - $title : The title of this group of rows.  May be empty.
 * - $options['type'] will either be ul or ol.
 * @ingroup views_templates
 */
?>
<div class="item-list">
  <?php

if (!empty($title)) {
  ?>
    <h3><?php

  print $title;
  ?></h3>
  <?php

}
?>
  <<?php

print $options['type'];
?>>
    <?php

foreach ($rows as $id => $row) {
  ?>
      <li class="<?php

  print $classes[$id];
  ?>"><?php

  print $row;
  ?></li>
    <?php

}
?>
  </<?php

print $options['type'];
?>>
</div>