mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 23:32:38 +00:00
927f37abfc
I'm considering moving this into lib/news.php, once I get permission from Dan Olson to GPL his contributions to that file.
23 lines
484 B
PHP
23 lines
484 B
PHP
<? // Preamble
|
|
$pageName = "News Archives";
|
|
$focused = "none"; // Dock icon name to gets a border
|
|
require("parts/preamble.php"); // Load most of document
|
|
?>
|
|
<?
|
|
require("news_funcs.php");
|
|
?>
|
|
<TABLE cellSpacing="2" cellPadding="0" border="0">
|
|
<TR vAlign="top">
|
|
<TD align="center">
|
|
<? monthForm (); ?>
|
|
</TD>
|
|
</TR>
|
|
<TR vAlign="top">
|
|
<TD align="center">
|
|
<? keywordForm (); ?>
|
|
</TD>
|
|
</TR>
|
|
</TABLE>
|
|
<?
|
|
require("parts/postamble.php"); // Finish this sucker up
|
|
?>
|