views-limit-grouping.tpl.php in Views Grouping Row Limit 7
Same filename and directory in other branches
views-limit-grouping.tpl.php Basically, just a copy of views-view-unformatted.tpl.php.
File
views-limit-grouping.tpl.phpView source
<?php
/**
* @file views-limit-grouping.tpl.php
* Basically, just a copy of views-view-unformatted.tpl.php.
*/
?>
<div class="views-limit-grouping-group">
<?php
if (!empty($title)) {
?>
<h3><?php
print $title;
?></h3>
<?php
}
?>
<?php
foreach ($rows as $id => $row) {
?>
<div class="views-row views-row-<?php
print $zebra;
?> <?php
print $classes;
?>">
<?php
print $row;
?>
</div>
<?php
}
?>
</div>