You are here

views-slideshow-liquidslider-main-frame.tpl.php in Views Slideshow Liquid Slider 7.2

Same filename and directory in other branches
  1. 7 theme/views-slideshow-liquidslider-main-frame.tpl.php

File

theme/views-slideshow-liquidslider-main-frame.tpl.php
View source
<?php

/**
 * @file
 * Views Slideshow: Single Frame template file.
 *
 * - $rows: The themed rows from the view.
 * - $settings: The settings for the views slideshow type.
 * - $view: The view object.
 * - $vss_id: The views slideshow id.
 */
$i = 0;
?>
<div id="views_slideshow_liquid_slider_content_<?php

print $vss_id;
?>" class="liquid-slider">
  <?php

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

  $tab_name = $view
    ->render_field($settings['caption_field'], $i++);
  ?>
	  <?php

  if (isset($tab_name)) {
    ?>
	  <h2 class="title"><?php

    print $tab_name;
    ?></h2>
	  <?php

  }
  ?>
	  <?php

  if (isset($row)) {
    ?>
	  <?php

    print $row;
    ?>
	  <?php

  }
  ?>
    </div>
  <?php

}
?>
</div>