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