You are here

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

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

File

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

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

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

}
?>

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

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

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

foreach ($items as $key => $item) {
  ?>
      <li class="media">
        <?php

  if ($item['image_field']) {
    ?>
          <div class="pull-left">
            <?php

    print $item['image_field'];
    ?>
          </div>
        <?php

  }
  ?>

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

  if ($item['heading_field']) {
    ?>
            <h4 class="media-heading">
              <?php

    print $item['heading_field'];
    ?>
            </h4>
          <?php

  }
  ?>

          <?php

  print $item['body_field'];
  ?>
        </div>
      </li>
    <?php

}
?>
  </ul>
</div>