block.tpl.php in Accordion Blocks 6
Same filename and directory in other branches
File
block.tpl.phpView source
<div id="block-<?php
print $block->module . '-' . $block->delta;
?>" class="clear-block block-<?php
print $block->module;
?>">
<?php
if (!empty($block->subject)) {
?>
<h2><a href="#"><?php
print $block->subject;
?></a></h2>
<?php
}
?>
<div class="content"><?php
print $block->content;
?></div>
</div>