Now all modules are in core modules folder
This commit is contained in:
parent
5ba1cdfa0b
commit
05b6a91b0c
1907 changed files with 0 additions and 0 deletions
20
modules/views/theme/views-view-list.tpl.php
Normal file
20
modules/views/theme/views-view-list.tpl.php
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
/**
|
||||
* @file views-view-list.tpl.php
|
||||
* Default simple view template to display a list of rows.
|
||||
*
|
||||
* - $title : The title of this group of rows. May be empty.
|
||||
* - $options['type'] will either be ul or ol.
|
||||
* @ingroup views_templates
|
||||
*/
|
||||
?>
|
||||
<div class="item-list">
|
||||
<?php if (!empty($title)) : ?>
|
||||
<h3><?php print $title; ?></h3>
|
||||
<?php endif; ?>
|
||||
<<?php print $options['type']; ?>>
|
||||
<?php foreach ($rows as $id => $row): ?>
|
||||
<li class="<?php print $classes[$id]; ?>"><?php print $row; ?></li>
|
||||
<?php endforeach; ?>
|
||||
</<?php print $options['type']; ?>>
|
||||
</div>
|
Reference in a new issue