From 9d3a925c53908efaf7be7e63f1acc4e264106269 Mon Sep 17 00:00:00 2001
From: John-Paul Robinson <jpr@uab.edu>
Date: Fri, 2 Dec 2011 18:32:51 -0600
Subject: [PATCH] Moved #mw-header ahead of #content to simplify rendering.

Move the #mw-head ahead of the #content rendering to match the pattern
used by UAB style.  This makes the rendering easier and causes the tabs
to appear at the top of the content.
---
 skins/UabVector.php | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/skins/UabVector.php b/skins/UabVector.php
index e6c128b..e18eb8b 100644
--- a/skins/UabVector.php
+++ b/skins/UabVector.php
@@ -524,6 +524,17 @@ class UabVectorTemplate extends QuickTemplate {
 		<!-- /leftcolumn -->
 		<!-- maincolumn-l-r -->
                 <div id="maincolumn-l-r">
+ 		<!-- header -->
+		<div id="mw-head" class="noprint">
+			<?php $this->renderNavigation( 'PERSONAL' ); ?>
+			<div id="left-navigation">
+				<?php $this->renderNavigation( array( 'NAMESPACES', 'VARIANTS' ) ); ?>
+			</div>
+			<div id="right-navigation">
+				<?php $this->renderNavigation( array( 'VIEWS', 'ACTIONS' ) ); ?>
+			</div>
+		</div>
+		<!-- /header -->
 		<!-- content -->
 		<div id="content" <?php $this->html('specialpageattributes') ?>>
 			<a id="top"></a>
@@ -580,17 +591,6 @@ class UabVectorTemplate extends QuickTemplate {
 			<!-- /bodyContent -->
 		</div>
 		<!-- /content -->
- 		<!-- header -->
-		<div id="mw-head" class="noprint">
-			<?php $this->renderNavigation( 'PERSONAL' ); ?>
-			<div id="left-navigation">
-				<?php $this->renderNavigation( array( 'NAMESPACES', 'VARIANTS' ) ); ?>
-			</div>
-			<div id="right-navigation">
-				<?php $this->renderNavigation( array( 'VIEWS', 'ACTIONS' ) ); ?>
-			</div>
-		</div>
-		<!-- /header -->
                 </div>
                 <!-- /maincolumn-l-r -->
 		<!-- leftcolumn -->
-- 
GitLab