You are here

box.tpl.php in Drupal 6

File

themes/pushbutton/box.tpl.php
View source
<div class="box">
  <?php

if ($title) {
  ?>
  <h2 class="title"><?php

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

}
?>
  <div class="content"><?php

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