views-view-unformatted.tpl.php in Clean Markup 7.3
Default simple view template to display a list of rows.
File
modules/clean_markup_views/templates/views-view-unformatted.tpl.phpView source
<?php
/**
* @file
* Default simple view template to display a list of rows.
*
* @ingroup views_templates
*/
if (!empty($title)) {
?>
<h3><?php
print $title;
?></h3>
<?php
}
foreach ($rows as $id => $row) {
?>
<div<?php
if ($classes_array[$id]) {
print ' class="' . $classes_array[$id] . '"';
}
?>>
<?php
print $row;
?>
</div>
<?php
}