drupal/themes/garland/block.tpl.php

14 lines
448 B
PHP
Raw Normal View History

<?php
// $Id$
?>
<div id="<?php print $block_html_id; ?>" class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
2006-10-29 13:21:46 +00:00
<?php print render($title_prefix); ?>
<?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;?>
<?php print render($title_suffix); ?>
2006-10-29 13:21:46 +00:00
<div class="content"<?php print $content_attributes; ?>><?php print $content ?></div>
2006-10-29 13:21:46 +00:00
</div>