Mercurial > hg > rr-repo
comparison 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 |
comparison
equal
deleted
inserted
replaced
1:67ce89da90df | 2:b74b41bb73f0 |
---|---|
1 <?php | |
2 | |
3 /** | |
4 * @file | |
5 * Default views template for displaying a slideshow. | |
6 * | |
7 * - $view: The View object. | |
8 * - $options: Settings for the active style. | |
9 * - $rows: The rows output from the View. | |
10 * - $title: The title of this group of rows. May be empty. | |
11 * | |
12 * @ingroup views_templates | |
13 */ | |
14 ?> | |
15 | |
16 <div class="skin-<?php print $skin; ?>"> | |
17 <?php if (!empty($top_widget_rendered)): ?> | |
18 <div class="views-slideshow-controls-top clearfix"> | |
19 <?php print $top_widget_rendered; ?> | |
20 </div> | |
21 <?php endif; ?> | |
22 | |
23 <?php print $slideshow; ?> | |
24 | |
25 <?php if (!empty($bottom_widget_rendered)): ?> | |
26 <div class="views-slideshow-controls-bottom clearfix"> | |
27 <?php print $bottom_widget_rendered; ?> | |
28 </div> | |
29 <?php endif; ?> | |
30 </div> |