website/contact.php

43 lines
1.2 KiB
PHP
Raw Normal View History

<?PHP
$sitename = "The QuakeForge Project";
$pagename = "Contact Us";
require("parts/library.php"); // Load function library
include("parts/head.php"); // Load the HEAD and open BODY
include("parts/topstrip.php"); // Display top strip
include("parts/titletable.php"); // Display main title w/ logos
?>
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
<TR valign="top">
<?php
include("parts/menu.php"); // Import left-side menus
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
?>
<TD width="100%">
<?php
$focused = "none"; // name of focused icon
include( "parts/topmain.php" ); // Display content top table
?>
<p>
Please email support questions to
2000-04-10 00:05:27 +00:00
<a href="mailto:quake-user@lists.sourceforge.net">
quake-user@lists.sourceforge.net</a>.
<P>
If you have ideas about new features for QuakeForge
or wish to help in development, you can contact the
QuakeForge developers at
2000-04-06 21:28:35 +00:00
<a href="mailto:quake-devel@lists.sourceforge.net">
2000-04-07 17:24:37 +00:00
quake-devel@lists.sourceforge.net</a> or in #quakeforge on irc.openprojects.net.
</TD>
<?php
tableSpacer( 1, 9, 1, "black");
?>
</TR>
<TR>
<TD COLSPAN="4">
<?php
include("parts/copyright.php");
?>
</TD>
</TR>
</TABLE>