Skip to content
semanticviews-view-unformatted.tpl.php 560 B
Newer Older
<?php
// $Id$
/**
 * @file views-view-unformatted.tpl.php
 * Default simple view template to display a list of rows.
 *
 * @ingroup views_templates
 */
?>
<?php if (!empty($title)): ?>
  <<?php print $group_element; ?><?php print drupal_attributes($group_attributes); ?>>
    <?php print $title; ?>
  </<?php print $group_element; ?>>
<?php endif; ?>
<?php foreach ($rows as $id => $row): ?>
  <<?php print $row_element; ?><?php print drupal_attributes($row_attributes[$id]); ?>>
    <?php print $row; ?>
  </<?php print $row_element; ?>>
<?php endforeach; ?>