You are here

views-view-unformatted--views-media-browser--browser-thumbs.tpl.php in Views Media Browser 7

views-view-unformatted.tpl.php Default simple view template to display a list of rows.

File

templates/views-view-unformatted--views-media-browser--browser-thumbs.tpl.php
View source
<?php

/**
 * @file views-view-unformatted.tpl.php
 * Default simple view template to display a list of rows.
 *
 * @ingroup views_templates
 */
if (!empty($title)) {
  ?>
  <h3><?php

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

}
?>
<div id="media-browser-library-list" class="media-thumbnails">
<?php

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

  print $row;
}
?>
</div>