block.tpl.php 396 B

12345678910111213
  1. <div<?php print $attributes; ?>>
  2. <div class="block-inner clearfix">
  3. <?php print render($title_prefix); ?>
  4. <?php if ($block->subject): ?>
  5. <h2<?php print $title_attributes; ?>><?php print $block->subject; ?></h2>
  6. <?php endif; ?>
  7. <?php print render($title_suffix); ?>
  8. <div<?php print $content_attributes; ?>>
  9. <?php print $content ?>
  10. </div>
  11. </div>
  12. </div>