blob: b69a21f9f22059949b53737922f14eb117e76883 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?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>
|