You are here

box.tpl.php in Drupal 6

box.tpl.php

Theme implementation to display a box.

Available variables:

  • $title: Box title.
  • $content: Box content.

See also

template_preprocess()

File

modules/system/box.tpl.php
View source
<?php

/**
 * @file box.tpl.php
 *
 * Theme implementation to display a box.
 *
 * Available variables:
 * - $title: Box title.
 * - $content: Box content.
 *
 * @see template_preprocess()
 */
?>
<div class="box">

<?php

if ($title) {
  ?>
  <h2><?php

  print $title;
  ?></h2>
<?php

}
?>

  <div class="content"><?php

print $content;
?></div>
</div>