Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add a <br clear="both"> before the footer on every page. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
249f1beaece5c6e8961909cf94a5a0e6 |
| User & Date: | drh 2009-09-21 20:40:24.000 |
Context
|
2009-09-22
| ||
| 11:15 | Add the optional mimetype= query parameter to the /doc URI. ... (check-in: f969b6cdde user: drh tags: trunk) | |
|
2009-09-21
| ||
| 20:40 | Add a <br clear="both"> before the footer on every page. ... (check-in: 249f1beaec user: drh tags: trunk) | |
| 19:19 | Fix a URL on the logo setup page. ... (check-in: 37f295c310 user: drh tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
141 142 143 144 145 146 147 |
@ </div>
}
@ <div class="content">
cgi_destination(CGI_BODY);
/* Put the footer at the bottom of the page.
*/
| | | 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
@ </div>
}
@ <div class="content">
cgi_destination(CGI_BODY);
/* Put the footer at the bottom of the page.
*/
@ </div><br clear="both"></br>
zFooter = db_get("footer", (char*)zDefaultFooter);
if( g.thTrace ) Th_Trace("BEGIN_FOOTER<br />\n", -1);
Th_Render(zFooter);
if( g.thTrace ) Th_Trace("END_FOOTER<br />\n", -1);
/* Render trace log if TH1 tracing is enabled. */
if( g.thTrace ){
|
| ︙ | ︙ |