Mercurial > hg > rr-repo
diff sites/all/modules/views_slideshow/theme/views-slideshow.tpl.php @ 2:b74b41bb73f0
-- Google analytics module
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Thu, 22 Aug 2013 17:22:54 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sites/all/modules/views_slideshow/theme/views-slideshow.tpl.php Thu Aug 22 17:22:54 2013 +0100 @@ -0,0 +1,30 @@ +<?php + +/** + * @file + * Default views template for displaying a slideshow. + * + * - $view: The View object. + * - $options: Settings for the active style. + * - $rows: The rows output from the View. + * - $title: The title of this group of rows. May be empty. + * + * @ingroup views_templates + */ +?> + +<div class="skin-<?php print $skin; ?>"> + <?php if (!empty($top_widget_rendered)): ?> + <div class="views-slideshow-controls-top clearfix"> + <?php print $top_widget_rendered; ?> + </div> + <?php endif; ?> + + <?php print $slideshow; ?> + + <?php if (!empty($bottom_widget_rendered)): ?> + <div class="views-slideshow-controls-bottom clearfix"> + <?php print $bottom_widget_rendered; ?> + </div> + <?php endif; ?> +</div>