2007-08-07 08:39:36 +00:00
|
|
|
<?php
|
|
|
|
// $Id$
|
2007-12-16 21:01:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @file box.tpl.php
|
|
|
|
*
|
|
|
|
* Theme implementation to display a box.
|
|
|
|
*
|
|
|
|
* Available variables:
|
|
|
|
* - $title: Box title.
|
|
|
|
* - $content: Box content.
|
|
|
|
*
|
|
|
|
* @see template_preprocess()
|
|
|
|
*/
|
2007-08-07 08:39:36 +00:00
|
|
|
?>
|
2007-04-27 07:42:54 +00:00
|
|
|
<div class="box">
|
|
|
|
|
|
|
|
<?php if ($title): ?>
|
|
|
|
<h2><?php print $title ?></h2>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<div class="content"><?php print $content ?></div>
|
|
|
|
</div>
|