Projet

Général

Profil

Paste
Télécharger (576 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / views_slideshow / contrib / views_slideshow_cycle / theme / views-slideshow-cycle.tpl.php @ c73bc8d8

1
<?php
2

    
3
/**
4
 * @file
5
 * Views Slideshow: Single Frame template file.
6
 *
7
 * @ingroup vss_templates
8
 */
9
?>
10

    
11
<div class="skin-<?php print $settings['views_slideshow_cycle']['skin']; ?>">
12
  <?php if (isset($top_widget_rendered)): ?>
13
    <div class="views-slideshow-controls-top clearfix">
14
      <?php print $top_widget_rendered; ?>
15
    </div>
16
  <?php endif; ?>
17

    
18
  <?php print $slideshow; ?>
19

    
20
  <?php if (isset($bottom_widget_rendered)): ?>
21
    <div class="views-slideshow-controls-bottom clearfix">
22
      <?php print $bottom_widget_rendered; ?>
23
    </div>
24
  <?php endif; ?>
25
</div>