Add the logo to the header (small in the top-left) and to the index page (bigger, right aligned)

This commit is contained in:
james 2006-03-08 21:55:57 +00:00
parent 5aca0a8ac9
commit 06fe2b179d
2 changed files with 5 additions and 0 deletions

View File

@ -390,6 +390,8 @@ function confirmChanges()
<div id="header">
<?
if(file_exists($prependdir."data/logo-100.gif"))
echo "<img align=\"left\" height=\"50\" src=\"".$config['SFIABDIRECTORY']."/data/logo-100.gif\">";
echo "<h1>".i18n($config['fairname'])."</h1>";
?>
<hr />

View File

@ -24,6 +24,9 @@
<?
include "common.inc.php";
send_header($config['fairname']);
if(file_exists("data/logo-200.gif"))
echo "<img align=\"right\" src=\"data/logo-200.gif\" border=\"0\">";
output_page_text("index");
send_footer();
?>