summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-10-07 09:23:28 +0000
committerDries Buytaert <dries@buytaert.net>2007-10-07 09:23:28 +0000
commit4b54e36c7812e0a24990332f060de54df9e218a4 (patch)
treeef31a0a6ee1afa97d5c43c5fe6a81490b2720dd7
parentdb10cb7d1ea786cc14dc1606d2d787f44f79c2b7 (diff)
downloadbrdo-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.php20
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; ?>