You are here

views-bootstrap-media-plugin-style.tpl.php in Views Bootstrap 7.3

Same filename and directory in other branches
  1. 7.2 templates/media/views-bootstrap-media-plugin-style.tpl.php

Default simple view template to display Bootstrap media object.

File

templates/media/views-bootstrap-media-plugin-style.tpl.php
View source
<?php

/**
 * @file
 * Default simple view template to display Bootstrap media object.
 */
if (!empty($title)) {
  ?>
  <h3><?php

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

}
?>

<div id="views-bootstrap-media-<?php

print $id;
?>" class="<?php

print $classes;
?>">
  <div class="media-list">
    <?php

foreach ($rows as $key => $row) {
  ?>
      <div class="media">
        <?php

  if ($row['image'] && $image_class == 'media-left') {
    ?>
          <div class="media-left pull-left">
            <?php

    print $row['image'];
    ?>
          </div>
        <?php

  }
  ?>
        <?php

  if ($row['image'] && $image_class == 'media-right') {
    ?>
          <div class="media-right pull-right">
            <?php

    print $row['image'];
    ?>
          </div>
        <?php

  }
  ?>

        <div class="media-body">
          <?php

  if ($row['heading']) {
    ?>
            <h3 class="media-heading">
              <?php

    print $row['heading'];
    ?>
            </h3>
          <?php

  }
  ?>

          <?php

  print $row['body'];
  ?>
        </div>
      </div>
    <?php

}
?>
  </div>
</div>