Skip to content
Snippets Groups Projects
Forked from project / bluecheese
1281 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
block.tpl.php 532 B
<?php
/**
 * @file block.tpl.php
 *
 * Theme implementation to display a block.
 *
 */
?>
<div id="<?php print $block_html_id; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>
<div class="block-inner">
  <?php print render($title_prefix); ?>
<?php if ($block->subject): ?>
  <h2<?php print $title_attributes; ?>><?php print $block->subject ?></h2>
<?php endif;?>
  <?php print render($title_suffix); ?>

  <div class="content"<?php print $content_attributes; ?>>
    <?php print $content ?>
  </div>
  </div>
</div>