Projet

Général

Profil

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

root / drupal7 / sites / all / modules / views / theme / views-view-unformatted.tpl.php @ 76df55b7

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]) { print ' class="' . $classes_array[$id] .'"';  } ?>>
15
    <?php print $row; ?>
16
  </div>
17
<?php endforeach; ?>