views-slideshow-liquidcarousel-main-frame.tpl.php in Views Slideshow Liquid Carousel 7.2
Same filename and directory in other branches
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.
File
theme/views-slideshow-liquidcarousel-main-frame.tpl.phpView 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.
*/
?>
<div id="views_slideshow_liquidcarousel_content_<?php
print $vss_id;
?>" class="liquid">
<span class="previous"><?php
print t('Previous');
?></span>
<div class="wrapper">
<ul>
<?php
foreach ($rows as $row) {
?>
<li><?php
print $row;
?></li>
<?php
}
?>
</ul>
</div>
<span class="next"><?php
print t('Next');
?></span>
</div>