summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pehjota>2012-12-04 16:46:36 (EST)
committer P. J. McDermott <pjm@nac.net>2012-12-04 16:46:36 (EST)
commitbebc72f2d3924a1b085f4dd0230b18688687f986 (patch)
tree5446618b7b137ff74fecb0dc5fba653ad9fe6af6
parent6fbdce9ebb4f97bd764e971c94435b40c55ba43d (diff)
Encapsulate footer p elements in a div.
-rw-r--r--templates/page.tmpl18
1 files changed, 10 insertions, 8 deletions
diff --git a/templates/page.tmpl b/templates/page.tmpl
index 6aad915..44b7874 100644
--- a/templates/page.tmpl
+++ b/templates/page.tmpl
@@ -149,14 +149,16 @@
<div class="clear"></div>
</div>
<footer>
- <p class="pagedate">
- Last edited <TMPL_VAR MTIME>
- <!-- Created <TMPL_VAR CTIME> -->
- </p>
- <p class="copyright">
- Copyright &copy; 2011–2012
- Patrick “P. J.” M<span class="super">c</span>Dermott
- </p>
+ <div>
+ <p class="pagedate">
+ Last edited <TMPL_VAR MTIME>
+ <!-- Created <TMPL_VAR CTIME> -->
+ </p>
+ <p class="copyright">
+ Copyright &copy; 2011–2012
+ Patrick “P. J.” M<span class="super">c</span>Dermott
+ </p>
+ </div>
</footer>
</body>
</html>