diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-04-27 07:42:54 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-04-27 07:42:54 +0000 |
commit | 29055d34d6f0ceee253a4122bb6c9dae6cb53b2b (patch) | |
tree | 35f015c5d507f9105e8b0e6ee66e8f33f447d169 /modules/system/box.tpl.php | |
parent | 80ab60d39ee0f2de0965d9c23d274cbf1dc0019a (diff) | |
download | brdo-29055d34d6f0ceee253a4122bb6c9dae6cb53b2b.tar.gz brdo-29055d34d6f0ceee253a4122bb6c9dae6cb53b2b.tar.bz2 |
- Patch #137236 by merlinofchaos: provide a way to secure the theme variables system.
Diffstat (limited to 'modules/system/box.tpl.php')
-rw-r--r-- | modules/system/box.tpl.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/box.tpl.php b/modules/system/box.tpl.php new file mode 100644 index 000000000..84d810cf0 --- /dev/null +++ b/modules/system/box.tpl.php @@ -0,0 +1,8 @@ +<div class="box"> + +<?php if ($title): ?> + <h2><?php print $title ?></h2> +<?php endif; ?> + + <div class="content"><?php print $content ?></div> +</div> |