diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-05-09 20:58:48 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-05-09 20:58:48 +0000 |
commit | 4d7ca9fff81a9844139ff1a0eb6e6d6078545173 (patch) | |
tree | 2ea6caca77c82cfac74c3dc8ab5ca4604914be9f | |
parent | 301e2d93c4bdb90eb1df58e2744726ad4675c125 (diff) |
web commit by Fred
-rw-r--r-- | doc/bugs/Add_a_footer_div_on_all_pages_to_improve_theming.mdwn | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/bugs/Add_a_footer_div_on_all_pages_to_improve_theming.mdwn b/doc/bugs/Add_a_footer_div_on_all_pages_to_improve_theming.mdwn index c694599bf..24a584007 100644 --- a/doc/bugs/Add_a_footer_div_on_all_pages_to_improve_theming.mdwn +++ b/doc/bugs/Add_a_footer_div_on_all_pages_to_improve_theming.mdwn @@ -6,6 +6,31 @@ Indeed, the misc.tmpl, recentchanges.tmpl and editpage.tmpl templates lack such > other pages looks a bit weird. Any idea how to get around that? > --[[Joey]] +>> Sorry I didn't see that. It definitely looks weird. We could add text +>> in all footers or change the CSS stylesheet, but it's not clean IMHO. + +>> The idea was about to ease themeing by giving all the pages the same +>> structure. The current structure is the following one: + +>> div header - div actions ... div content - div footer (sometimes) + +>> So we could add some new divs in all templates. By default, they will +>> be empty and no CSS will be defined for them. This way ikiwiki +>> standard appearance is not changed but themeing will be eased. +>> The new page structure could be: + +>> * div banner (to show up a logo for example) + +>> * div content-wrap containing div header, div actions, ... div content +>> and div footer + +>> * div realfooter (to put credits, "Powered by ikiwiki", "Valid XHTML"...) + +>> From my tests, it works: Just adding the divs, without touching the stylesheet, +>> doesn't change ikiwiki appearance. And themeing is eased :-) + +>> I can update the patch, if you want to follow and test this idea. --Fred + This patch is against current svn. Index: templates/recentchanges.tmpl |