You are here

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

Same filename and directory in other branches
  1. 7.3 templates/thumbnail/views-bootstrap-thumbnail-plugin-rows.tpl.php

views-bootstrap-thumbnail-plugin-rows.tpl.php Default simple view template to display Bootstrap Thumbnails.

File

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

/**
 * @file views-bootstrap-thumbnail-plugin-rows.tpl.php
 * Default simple view template to display Bootstrap Thumbnails.
 *
 * @ingroup views_templates
 */
?>

<?php

print $image;
?>

<?php

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

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

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

  }
  ?>

    <?php

  foreach ($content as $field) {
    ?>
      <?php

    if (!empty($field)) {
      ?>
        <?php

      print $field;
      ?>
      <?php

    }
    ?>
    <?php

  }
  ?>
  </div>
<?php

}