Skip to content

Instantly share code, notes, and snippets.

@szeidler
Created June 10, 2015 12:03
Show Gist options
  • Save szeidler/fcfeff1a44470d364e85 to your computer and use it in GitHub Desktop.
Save szeidler/fcfeff1a44470d364e85 to your computer and use it in GitHub Desktop.
Wrap views-row
<?php
/**
* @file
* Default simple view template to display a list of rows.
*
* @ingroup views_templates
*/
?>
<?php if (!empty($title)): ?>
<h3><?php print $title; ?></h3>
<?php endif; ?>
<?php foreach ($rows as $id => $row): ?>
<div class="views-row">
<div class="views-row-inner<?php if ($classes_array[$id]) { print ' ' . $classes_array[$id]; } ?>"><?php print $row; ?></div>
</div>
<?php endforeach; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment