You are here

imageblock-block.tpl.php in Image Block 6

imageblock-block.tpl.php

Theme implementation to display a block.

Available variables:

  • $block: Block object.
  • $image: Block image content.
  • $content: Block content.

File

imageblock-block.tpl.php
View 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

}