You are here

block.tpl.php in Accordion Blocks 7.2

Same filename and directory in other branches
  1. 6 block.tpl.php
  2. 7.3 block.tpl.php

File

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