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