]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/Add_a_footer_div_on_all_pages_to_improve_theming.mdwn
web commit by Fred: Reformat the entry so that the patch is readable. Sorry.
[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
4 This patch is against current svn.
5
6         Index: templates/recentchanges.tmpl
7         ===================================================================
8         --- templates/recentchanges.tmpl        (révision 3543)
9         +++ templates/recentchanges.tmpl        (copie de travail)
10         @@ -64,6 +64,8 @@
11          </div>
12          
13          <!-- from <TMPL_VAR NAME=WIKINAME> -->
14         +<div id="footer">
15         +</div>
16          
17          </body>
18          </html>
19         Index: templates/editpage.tmpl
20         ===================================================================
21         --- templates/editpage.tmpl     (révision 3543)
22         +++ templates/editpage.tmpl     (copie de travail)
23         @@ -86,5 +86,7 @@
24          <TMPL_VAR PAGE_PREVIEW>
25          </div>
26          </TMPL_IF>
27         +<div id="footer">
28         +</div>
29          </body>
30          </html>
31         Index: templates/misc.tmpl
32         ===================================================================
33         --- templates/misc.tmpl (révision 3543)
34         +++ templates/misc.tmpl (copie de travail)
35         @@ -22,6 +22,8 @@
36         <div id="content">
37          <TMPL_VAR PAGEBODY>
38          </div>
39         +<div id="footer">
40         +</div>
41          
42          </body>
43          </html>