diff options
Diffstat (limited to 'html/functions.php3')
| -rw-r--r-- | html/functions.php3 | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/html/functions.php3 b/html/functions.php3 index 4a019784..abba6128 100644 --- a/html/functions.php3 +++ b/html/functions.php3 @@ -32,14 +32,11 @@ function dt($string) { print "</div></dt>"; } -/* Automatic footnotes! */ - -/* FIXME: for now, do nothing. */ +/* Automatic footnotes? */ +/* FIXME: for now, just inline them. */ function footnote ($text) { - print "<div style=\"font-style:italic; font-size: smaller\"><p>[" - . $text . "]</p></div>"; - + print "<small><i><p>[" . $text . "]</p></small></i>"; } /* A hyper-link with optional mouse over text. @@ -107,11 +104,15 @@ function small_header($title) { print "<h1>" . $title . "</h1>\n</td>\n</table>\n"; } +/* FIXME: improve this function */ + function footer($filemodified=".") { include('footer.phtml'); date_modified($filemodified); print "</address>\n"; - print "</body>\n</html>\n"; + print "</body>\n"; + print "</font>\n"; /* Naughty stuff for older browsers, shouldn't do if V4 */ + print "</html>\n"; } function click_to_go_back() { |
