block.tpl.php 474 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @file
  4. * Alpha's theme implementation to display a block.
  5. */
  6. ?>
  7. <div<?php print $attributes; ?>>
  8. <div class="block-inner clearfix">
  9. <?php print render($title_prefix); ?>
  10. <?php if ($block->subject): ?>
  11. <h2<?php print $title_attributes; ?>><?php print $block->subject; ?></h2>
  12. <?php endif; ?>
  13. <?php print render($title_suffix); ?>
  14. <div<?php print $content_attributes; ?>>
  15. <?php print $content ?>
  16. </div>
  17. </div>
  18. </div>