source: sipes/modules_contrib/views/theme/views-view-list.tpl.php @ 65dadeb

stableversion-3.0
Last change on this file since 65dadeb was 59029b2, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se actualizo la version del modulo views

  • Propiedad mode establecida a 100644
File size: 616 octetos
Línea 
1<?php
2/**
3 * @file views-view-list.tpl.php
4 * Default simple view template to display a list of rows.
5 *
6 * - $title : The title of this group of rows.  May be empty.
7 * - $options['type'] will either be ul or ol.
8 * @ingroup views_templates
9 */
10?>
11<?php print $wrapper_prefix; ?>
12  <?php if (!empty($title)) : ?>
13    <h3><?php print $title; ?></h3>
14  <?php endif; ?>
15  <?php print $list_type_prefix; ?>
16    <?php foreach ($rows as $id => $row): ?>
17      <li class="<?php print $classes[$id]; ?>"><?php print $row; ?></li>
18    <?php endforeach; ?>
19  <?php print $list_type_suffix; ?>
20<?php print $wrapper_suffix; ?>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.