diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-04-14 19:29:27 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-04-14 19:29:27 +0000 |
commit | d32216f8b6cfca4901ad31f634bb6b846c832f48 (patch) | |
tree | d78d9863d13bf510b41e276a8edfc1d3ba45b20a /themes/example/example.theme | |
parent | d7fefa2a6b4722e4ecd6f9cde2d8e8832d750d86 (diff) | |
download | brdo-d32216f8b6cfca4901ad31f634bb6b846c832f48.tar.gz brdo-d32216f8b6cfca4901ad31f634bb6b846c832f48.tar.bz2 |
- added new variable: theme_footer which can be used to provide a
footer message like a copyright notice. Themes should use this!
- small improvement to example theme
- added theme_footer to theme marvin
- small improvement to database.inc
Diffstat (limited to 'themes/example/example.theme')
-rw-r--r-- | themes/example/example.theme | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/themes/example/example.theme b/themes/example/example.theme index e78ce60d5..a1984fb4f 100644 --- a/themes/example/example.theme +++ b/themes/example/example.theme @@ -22,7 +22,7 @@ <TABLE BORDER="1"> <TR> <TD> - Logo? <!-- I left a TD to add a logo of some kind --> + <BIG><A HREF="index.php"><?php print variable_get(site_name, "drupal"); ?></A></BIG> </TD> <TD ALIGN="right" COLSPAN="2"> @@ -191,9 +191,8 @@ </TR> <TR> <TD ALIGN="center" COLSPAN="3"> -<?php - print theme_link(" | "); -?> + <P><?php print theme_link(" | "); ?></P> + <P><SMALL><?php print variable_get(theme_footer, ""); ?></SMALL></P> </TD> </TR> </TABLE> |