You are here

views-view-unformatted--pdf.tpl.php in Views PDF 6

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

File

theme/views-view-unformatted--pdf.tpl.php
View source
<?php

// $Id: views-view-unformatted.tpl.php,v 1.6 2008/10/01 20:52:11 merlinofchaos Exp $

/**
 * @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

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

  print $classes[$id];
  ?>">
    <?php

  print $row;
  ?>
  </div>
<?php

}