diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-10-07 09:23:28 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-10-07 09:23:28 +0000 |
commit | 4b54e36c7812e0a24990332f060de54df9e218a4 (patch) | |
tree | ef31a0a6ee1afa97d5c43c5fe6a81490b2720dd7 | |
parent | db10cb7d1ea786cc14dc1606d2d787f44f79c2b7 (diff) | |
download | brdo-4b54e36c7812e0a24990332f060de54df9e218a4.tar.gz brdo-4b54e36c7812e0a24990332f060de54df9e218a4.tar.bz2 |
- Patch #181180 by Eaton: make it easier to do CSS-only themes.
-rw-r--r-- | modules/system/page.tpl.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/modules/system/page.tpl.php b/modules/system/page.tpl.php index 55d95e7ad..cbbd84a40 100644 --- a/modules/system/page.tpl.php +++ b/modules/system/page.tpl.php @@ -111,6 +111,16 @@ <div id="search-box"><?php print $search_box; ?></div> <?php endif; ?> + <?php if (!empty($header)): ?> + <div id="header-region"> + <?php print $header; ?> + </div> + <?php endif; ?> + + </div> <!-- /header --> + + <div id="container" class="clear-block"> + <div id="navigation" class="menu <?php if (!empty($primary_links)) { print "withprimary"; } if (!empty($secondary_links)) { print " withsecondary"; } ?> "> <?php if (!empty($primary_links)): ?> <div id="primary" class="clear-block"> @@ -125,16 +135,6 @@ <?php endif; ?> </div> <!-- /navigation --> - <?php if (!empty($header)): ?> - <div id="header-region"> - <?php print $header; ?> - </div> - <?php endif; ?> - - </div> <!-- /header --> - - <div id="container" class="clear-block"> - <?php if (!empty($left)): ?> <div id="sidebar-left" class="column sidebar"> <?php print $left; ?> |