aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2010-04-26 13:52:54 -0400
committerJoey Hess <joey@kitenet.net>2010-04-26 13:53:39 -0400
commita17e6ed4632f7f618151b2a882827aba20dded90 (patch)
tree0bdf5ecdb094c430bd1f99c69d04e5f00cdfa8bc /templates
parent06d5a19370e07d39e3dcbd975fe479388104b0a5 (diff)
downloadikiwiki-a17e6ed4632f7f618151b2a882827aba20dded90.tar
ikiwiki-a17e6ed4632f7f618151b2a882827aba20dded90.tar.gz
Minor, seemingly harmless tweaks to misc.tmpl
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)
Diffstat (limited to 'templates')
-rw-r--r--templates/misc.tmpl10
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/misc.tmpl b/templates/misc.tmpl
index 9ec9a59cb..535a6f06b 100644
--- a/templates/misc.tmpl
+++ b/templates/misc.tmpl
@@ -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>