You are here

block.tpl.php in Drupal 6

File

themes/garland/block.tpl.php
View 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>