Minor, seemingly harmless tweaks to misc.tmpl
authorJoey Hess <joey@kitenet.net>
Mon, 26 Apr 2010 17:52:54 +0000 (13:52 -0400)
committerJoey Hess <joey@kitenet.net>
Mon, 26 Apr 2010 17:53:39 +0000 (13:53 -0400)
Whenever the DIV tag structure of page.tmpl has been changed, the DIV
tag structure of misc.tmpl must also change to reflect this, or else
any page which uses misc.tmpl will not look right.  My intent is to
make ease parallel maintenance of these two files by eliminating
trivial/accidental difference between the two, so that duplicated
regions can be more readily identified (perhaps even mechanically).

(cherry-picked from commit 075980f94996e8f67d9632ae95b8bf41fdf09afa, but
without the changes to comments in page.tmpl)

templates/misc.tmpl

index 9ec9a59cb32f361a1fd50b51866935786a92b0b5..535a6f06ba57200f700108b331c236e898a02b95 100644 (file)
@@ -9,11 +9,11 @@
 </TMPL_IF>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <title><TMPL_VAR TITLE></title>
-<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
-<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css" type="text/css" />
 <TMPL_IF NAME="FAVICON">
 <link rel="icon" href="<TMPL_VAR BASEURL><TMPL_VAR FAVICON>" type="image/x-icon" />
 </TMPL_IF>
+<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
+<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css" type="text/css" />
 </head>
 <body>
 
@@ -32,9 +32,9 @@
 <TMPL_VAR PAGEBODY>
 </div>
 
-<div id="footer">
-<!-- from <TMPL_VAR NAME=WIKINAME> -->
-</div>
+<div id="footer" class="pagefooter">
+<!-- from <TMPL_VAR WIKINAME> -->
+</div><!-- .pagefooter #footer -->
 
 </body>
 </html>