Projet

Général

Profil

Paste
Télécharger (394 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / views / theme / views-view-unformatted.tpl.php @ 5d12d676

1
<?php
2

    
3
/**
4
 * @file
5
 * Default simple view template to display a list of rows.
6
 *
7
 * @ingroup views_templates
8
 */
9
?>
10
<?php if (!empty($title)): ?>
11
  <h3><?php print $title; ?></h3>
12
<?php endif; ?>
13
<?php foreach ($rows as $id => $row): ?>
14
  <div<?php if ($classes_array[$id]): ?> class="<?php print $classes_array[$id]; ?>"<?php endif; ?>>
15
    <?php print $row; ?>
16
  </div>
17
<?php endforeach; ?>