- Patch #372471: box.tpl.php is dead.

merge-requests/26/head
Dries Buytaert 2009-05-12 09:23:40 +00:00
parent 417e2fc2bb
commit f96d0a9ee9
1 changed files with 0 additions and 22 deletions

View File

@ -1,22 +0,0 @@
<?php
// $Id$
/**
* @file
* Default 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 endif; ?>
<div class="content"><?php print $content ?></div>
</div>