]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/Add_a_footer_div_on_all_pages_to_improve_theming.mdwn
774f51fbaded1e6cd59584012f855ab8a287d45e
[ikiwiki.git] / doc / bugs / Add_a_footer_div_on_all_pages_to_improve_theming.mdwn
1 The following patch adds a footer div on all pages to ease CSS themeing.
2 Indeed, the misc.tmpl, recentchanges.tmpl and editpage.tmpl templates lack such a div.
3 This patch is against current svn.
4
5 Index: templates/recentchanges.tmpl
6 ===================================================================
7 --- templates/recentchanges.tmpl        (révision 3543)
8 +++ templates/recentchanges.tmpl        (copie de travail)
9 @@ -64,6 +64,8 @@
10  </div>
11  
12  <!-- from <TMPL_VAR NAME=WIKINAME> -->
13 +<div id="footer">
14 +</div>
15  
16  </body>
17  </html>
18 Index: templates/editpage.tmpl
19 ===================================================================
20 --- templates/editpage.tmpl     (révision 3543)
21 +++ templates/editpage.tmpl     (copie de travail)
22 @@ -86,5 +86,7 @@
23  <TMPL_VAR PAGE_PREVIEW>
24  </div>
25  </TMPL_IF>
26 +<div id="footer">
27 +</div>
28  </body>
29  </html>
30 Index: templates/misc.tmpl
31 ===================================================================
32 --- templates/misc.tmpl (révision 3543)
33 +++ templates/misc.tmpl (copie de travail)
34 @@ -22,6 +22,8 @@
35  <div id="content">
36  <TMPL_VAR PAGEBODY>
37  </div>
38 +<div id="footer">
39 +</div>
40  
41  </body>
42  </html>