mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-27 22:42:57 +00:00
06ed1cd973
completeness. titletable.php: Changed color usage so that we can change theme at will, when we want to. :) parts/*amble.php: Cool New Stuff to allow even simpler maintenance of individual PHP source files...you will only have to maintain stuff that's "native" to the page. As always, backward compatibility is kept...but it's much better now. :)
23 lines
921 B
PHP
23 lines
921 B
PHP
<!-- top title table -->
|
|
<TABLE width="100%" border=0 cellspacing=0 cellpadding=0 bgcolor="" valign="center">
|
|
<TR vAlign="top" bgColor="<? echo $menuBgColor ?>">
|
|
<? tableSpacer( 3, 0, 4, $menuBgColor); ?>
|
|
</TR>
|
|
<TR valign="top" bgcolor="<? echo $menuBgColor ?>">
|
|
<? tableSpacer( 0, 1, 1, $menuBgColor); ?>
|
|
<TD>
|
|
<IMG src="/img/logos/qf-logo.png" alt="QuakeForge" hSpace=0 vSpace=0 border=0 width="70" height="70">
|
|
</TD>
|
|
<? tableSpacer( 0, 5, 1, $menuBgColor); ?>
|
|
<TD width="99%"><!-- right of logo -->
|
|
<a href="http://sourceforge.net/"><IMG src="http://sourceforge.net/sflogo.php?group_id=882&type=1" align="right" alt="SourceForge" hspace=20 vspace=20 border=0 width="88" height="31"></A>
|
|
<BR>
|
|
<SPAN class="mainTitle"><?PHP echo "$sitename" ?></SPAN>
|
|
</TD>
|
|
<!-- right of logo -->
|
|
</TR>
|
|
<TR>
|
|
<? tableSpacer( 2, 0, 2, "black"); ?>
|
|
</TR>
|
|
</TABLE>
|
|
<!-- end top title table -->
|