summaryrefslogtreecommitdiff
path: root/themes/garland/block.tpl.php
blob: da147997e45123868c38056a202ac839748e63cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
// $Id$
?>
<div id="block-<?php print $block->module . '-' . $block->delta; ?>" class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>

<?php if (!empty($contextual_links)): ?>
  <?php print render($contextual_links); ?>
<?php endif; ?>

<?php if (!empty($block->subject)): ?>
  <h2 class="title"<?php print $title_attributes; ?>><?php print $block->subject ?></h2>
<?php endif;?>

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