| 1 |
<?php if ($block->region == "sidebar_right") { ?>
|
| 2 |
<div class="rt"></div>
|
| 3 |
<div class="right_articles">
|
| 4 |
<?php } else if ($block->region == "sidebar_plain") { ?>
|
| 5 |
<div class="right_plain">
|
| 6 |
<?php } else if ($block->region == "content_top" || $block->region == "content_bottom") { ?>
|
| 7 |
<div class="lt"></div>
|
| 8 |
<div class="lbox">
|
| 9 |
<?php } else { ?>
|
| 10 |
<div>
|
| 11 |
<?php } ?>
|
| 12 |
<div class="block block-<?php print $block->module; ?>" id="block-<?php print $block->module; ?>-<?php print $block->delta; ?>">
|
| 13 |
<h2 class="title"><?php print $block->subject; ?></h2>
|
| 14 |
<div class="content"><?php print $block->content; ?></div>
|
| 15 |
</div>
|
| 16 |
</div>
|