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/pushbutton/block.tpl.phpView source
<div class="<?php
print "block block-{$block->module}";
?>" id="<?php
print "block-{$block->module}-{$block->delta}";
?>">
<div class="title"><h3><?php
print $block->subject;
?></h3></div>
<div class="content"><?php
print $block->content;
?></div>
</div>