diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/page.tpl.php | 5 | ||||
-rw-r--r-- | modules/system/system.module | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/modules/system/page.tpl.php b/modules/system/page.tpl.php index 18b15ee73..a85807837 100644 --- a/modules/system/page.tpl.php +++ b/modules/system/page.tpl.php @@ -104,6 +104,11 @@ </head> <body class="<?php print $classes; ?>"> + <?php if ($page_top): ?> + <div id="page-top-region" class="clearfix"> + <?php print $page_top; ?> + </div> + <?php endif; ?> <div id="page-wrapper"><div id="page"> <div id="header"><div class="section clearfix"> diff --git a/modules/system/system.module b/modules/system/system.module index e8472de88..9339c187a 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1464,6 +1464,7 @@ function _system_get_theme_data() { 'footer' => 'Footer', 'highlight' => 'Highlighted content', 'help' => 'Help', + 'page_top' => 'Page top', ), 'description' => '', 'features' => array( |