You are here

views-nivo-slider-view.tpl.php in Views Nivo Slider 6.2

Views Nivo Slider theme wrapper.

File

views-nivo-slider-view.tpl.php
View source
<?php

/**
 * @file
 *  Views Nivo Slider theme wrapper.
 *
 * @ingroup views_templates
 */
?>
<div class="<?php

print $classes;
?>">
  <?php

if ($admin_links) {
  ?>
    <div class="views-admin-links views-hide">
      <?php

  print $admin_links;
  ?>
    </div>
  <?php

}
?>
  <?php

if ($header) {
  ?>
    <div class="view-header">
      <?php

  print $header;
  ?>
    </div>
  <?php

}
?>

  <?php

if ($exposed) {
  ?>
    <div class="view-filters">
      <?php

  print $exposed;
  ?>
    </div>
  <?php

}
?>

  <?php

if ($attachment_before) {
  ?>
    <div class="attachment attachment-before">
      <?php

  print $attachment_before;
  ?>
    </div>
  <?php

}
?>

  <?php

if ($rows) {
  ?>

    <div id="<?php

  print $views_nivo_slider_id;
  ?>" class="views-nivo-slider clear-block">
      <?php

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

    print $row;
    ?>
      <?php

  }
  ?>
    </div>
    <?php

  foreach ($view->_vns_captions as $vns_id => $vns_caption) {
    ?>
      <div id="<?php

    print $vns_id;
    ?>" class="nivo-html-caption">
        <?php

    print $vns_caption;
    ?>
      </div>
    <?php

  }
  ?>

  <?php

}
elseif ($empty) {
  ?>
    <div class="view-empty">
      <?php

  print $empty;
  ?>
    </div>
  <?php

}
?>

  <?php

if ($pager) {
  ?>
    <?php

  print $pager;
  ?>
  <?php

}
?>

  <?php

if ($attachment_after) {
  ?>
    <div class="attachment attachment-after">
      <?php

  print $attachment_after;
  ?>
    </div>
  <?php

}
?>

  <?php

if ($more) {
  ?>
    <?php

  print $more;
  ?>
  <?php

}
?>

  <?php

if ($footer) {
  ?>
    <div class="view-footer">
      <?php

  print $footer;
  ?>
    </div>
  <?php

}
?>

  <?php

if ($feed_icon) {
  ?>
    <div class="feed-icon">
      <?php

  print $feed_icon;
  ?>
    </div>
  <?php

}
?>

</div>