imageblock-block.tpl.php in Image Block 6
Theme implementation to display a block.
Available variables:
- $block: Block object.
- $image: Block image content.
- $content: Block content.
1 theme call to imageblock-block.tpl.php
- imageblock_block in ./
imageblock.module - Implements hook_block().
File
imageblock-block.tpl.phpView source
<?php
/**
* @file imageblock-block.tpl.php
*
* Theme implementation to display a block.
*
* Available variables:
* - $block: Block object.
* - $image: Block image content.
* - $content: Block content.
*
* @see template_preprocess()
* @see template_preprocess_imageblock_block()
*/
if ($image) {
?>
<div class="block-image">
<?php
print $image;
?>
</div>
<?php
}
?>
<?php
if ($content) {
?>
<div class="block-body">
<?php
print $content;
?>
</div>
<?php
}