views-view-list.tpl.php

Same filename in other branches
  1. 6.x-3.x theme/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

theme/views-view-list.tpl.php

View source
<?php


/**
 * @file
 * 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
 */
print $wrapper_prefix;
?>
  <?php

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

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

}
?>
  <?php

print $list_type_prefix;
?>
    <?php

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

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

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

}
?>
  <?php

print $list_type_suffix;
print $wrapper_suffix;

Related topics