You are here

slick-views.tpl.php in Slick Views 7.2

Default theme implementation for the Slick views template.

Available variables:

  • $rows: The array of items.
  • $options: Array of available settings via Views UI.

File

templates/slick-views.tpl.php
View source
<?php

/**
 * @file
 * Default theme implementation for the Slick views template.
 *
 * Available variables:
 * - $rows: The array of items.
 * - $options: Array of available settings via Views UI.
 */
print $wrapper_prefix;
?>
  <?php

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

  print render($row);
  ?>
  <?php

}
print $wrapper_suffix;