drupal/themes/garland/block.tpl.php

16 lines
455 B
PHP
Raw Normal View History

<?php
// $Id$
?>
<div id="block-<?php print $block->module . '-' . $block->delta; ?>" class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
2006-10-29 13:21:46 +00:00
<?php if ($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>
2006-10-29 13:21:46 +00:00
<?php endif;?>
<div class="content"><?php print $content ?></div>
2006-10-29 13:21:46 +00:00
</div>