first import
This commit is contained in:
17
sites/all/modules/views/theme/views-view-unformatted.tpl.php
Normal file
17
sites/all/modules/views/theme/views-view-unformatted.tpl.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* 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<?php if ($classes_array[$id]) { print ' class="' . $classes_array[$id] .'"'; } ?>>
|
||||
<?php print $row; ?>
|
||||
</div>
|
||||
<?php endforeach; ?>
|
Reference in New Issue
Block a user