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
16
modules/views/theme/views-view-unformatted.tpl.php
Normal file
16
modules/views/theme/views-view-unformatted.tpl.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
/**
|
||||
* @file views-view-unformatted.tpl.php
|
||||
* Default simple view template to display a list of rows.
|
||||
*
|
||||
* @ingroup views_templates
|
||||
*/
|
||||
?>
|
||||
<?php if (!empty($title)): ?>
|
||||
<h3><?php print $title; ?></h3>
|
||||
<?php endif; ?>
|
||||
<?php foreach ($rows as $id => $row): ?>
|
||||
<div class="<?php print $classes[$id]; ?>">
|
||||
<?php print $row; ?>
|
||||
</div>
|
||||
<?php endforeach; ?>
|
Reference in a new issue