You are here

views-bootstrap-carousel-plugin-rows.tpl.php in Views Bootstrap 7.2

File

templates/carousel/views-bootstrap-carousel-plugin-rows.tpl.php
View source
<?php

print $image;
?>

<?php

if (!empty($title) || !empty($description)) {
  ?>
  <div class="carousel-caption">
    <?php

  if (!empty($title)) {
    ?>
      <h4><?php

    print $title;
    ?></h4>
    <?php

  }
  ?>

    <?php

  if (!empty($description)) {
    ?>
      <p><?php

    print $description;
    ?></p>
    <?php

  }
  ?>
  </div>
<?php

}