block.tpl.php in Drupal 6
Same filename in this branch
Same filename and directory in other branches
1 theme call to block.tpl.php
- theme_blocks in includes/
theme.inc - Return a set of blocks available for the current user.
File
themes/garland/block.tpl.phpView source
<div id="block-<?php
print $block->module . '-' . $block->delta;
?>" class="clear-block block block-<?php
print $block->module;
?>">
<?php
if (!empty($block->subject)) {
?>
<h2><?php
print $block->subject;
?></h2>
<?php
}
?>
<div class="content"><?php
print $block->content;
?></div>
</div>