summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/system/box.tpl.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/modules/system/box.tpl.php b/modules/system/box.tpl.php
deleted file mode 100644
index b69a21f9f..000000000
--- a/modules/system/box.tpl.php
+++ /dev/null
@@ -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>