drupal/themes/garland/block.tpl.php

12 lines
314 B
PHP
Raw Normal View History

<?php
// $Id$
?>
<div id="block-<?php print $block->module . '-' . $block->delta; ?>" class="clear-block block block-<?php print $block->module ?>">
2006-10-29 13:21:46 +00:00
<?php if (!empty($block->subject)): ?>
2006-10-29 13:21:46 +00:00
<h2><?php print $block->subject ?></h2>
<?php endif;?>
<div class="content"><?php print $block->content ?></div>
</div>