summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--misc.tmpl6
-rw-r--r--page.tmpl22
2 files changed, 26 insertions, 2 deletions
diff --git a/misc.tmpl b/misc.tmpl
index fab39b3..2881544 100644
--- a/misc.tmpl
+++ b/misc.tmpl
@@ -30,19 +30,25 @@ isn't that nice to know? -->
</head>
<body>
+<div id="container">
+
<div class="header">
<span>
<TMPL_VAR INDEXLINK>/ <TMPL_VAR TITLE>
</span>
</div>
+<div id="wrapper">
<div id="content">
<TMPL_VAR PAGEBODY>
</div>
+</div>
<div id="footer">
<!-- from <TMPL_VAR NAME=WIKINAME> -->
</div>
+</div><!-- #container -->
+
</body>
</html>
diff --git a/page.tmpl b/page.tmpl
index 4f1d3cb..d012527 100644
--- a/page.tmpl
+++ b/page.tmpl
@@ -30,6 +30,8 @@ isn't that nice to know? -->
</head>
<body>
+<div id="container">
+
<div class="pageheader">
<div class="header">
<span>
@@ -70,15 +72,29 @@ isn't that nice to know? -->
</TMPL_IF>
</div> <!-- .pageheader -->
+<TMPL_IF TOPBAR>
+<div id="topbar">
+<TMPL_VAR TOPBAR>
+</div>
+</TMPL_IF>
+
+<div id="wrapper">
+<div id="content">
+<TMPL_VAR CONTENT>
+</div>
+</div>
+
<TMPL_IF SIDEBAR>
<div id="sidebar">
<TMPL_VAR SIDEBAR>
</div>
</TMPL_IF>
-<div id="content">
-<TMPL_VAR CONTENT>
+<TMPL_IF FARBAR>
+<div id="farbar">
+<TMPL_VAR FARBAR>
</div>
+</TMPL_IF>
<div id="footer" class="pagefooter">
<div id="pageinfo">
@@ -134,5 +150,7 @@ Senest redigeret <TMPL_VAR NAME=MTIME>
<!-- from <TMPL_VAR NAME=WIKINAME> -->
</div><!-- .pagefooter #footer -->
+</div><!-- #container -->
+
</body>
</html>