You are here

views-rows-wrapper.tpl.php in Views Rows Wrapper 7

Template to display a views wrapped rows.

File

views-rows-wrapper.tpl.php
View source
<?php

/**
 * @file
 * Template to display a views wrapped rows.
 *
 * @ingroup views_templates
 */
?>
<div class="views-rows-wrapper">
  <?php

foreach ($rows_wrapped as $row) {
  print $row;
}
?>
</div>