2007-08-07 08:39:36 +00:00
|
|
|
<?php
|
|
|
|
// $Id$
|
|
|
|
?>
|
2009-09-11 06:48:03 +00:00
|
|
|
<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
|
|
|
|
2009-12-06 01:00:27 +00:00
|
|
|
<?php if (!empty($contextual_links)): ?>
|
2009-10-17 05:50:29 +00:00
|
|
|
<?php print render($contextual_links); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
2007-03-27 05:13:55 +00:00
|
|
|
<?php if (!empty($block->subject)): ?>
|
2009-09-11 06:48:03 +00:00
|
|
|
<h2 class="title"<?php print $title_attributes; ?>><?php print $block->subject ?></h2>
|
2006-10-29 13:21:46 +00:00
|
|
|
<?php endif;?>
|
|
|
|
|
2009-10-19 01:30:07 +00:00
|
|
|
<div class="content"<?php print $content_attributes; ?>><?php print $content ?></div>
|
2006-10-29 13:21:46 +00:00
|
|
|
</div>
|