You are here

views-view-quicksand.tpl.php in Views Quicksand 7

Displays the the view-rows and appends the clss views-quicksand.

File

views-view-quicksand.tpl.php
View source
<?php

/**
 * @file
 * Displays the the view-rows and appends the clss views-quicksand.
 */
if (!empty($title)) {
  ?>
  <h3 class="<?php

  print $view_quicksand_id;
  ?>"><a href="#"><?php

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

}
?>

<?php

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

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

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

}