mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 15:22:13 +00:00
21 lines
556 B
PHP
21 lines
556 B
PHP
<?
|
|
define ('siteHome', "/home/project-web/quake/htdocs");
|
|
require siteHome . "/parts/library.inc"; // Load function library
|
|
|
|
header ("Content-Type: text/xml");
|
|
echo('<?xml version="1.0" encoding="utf-8"?>' . "\n");
|
|
?>
|
|
<rss version="2.0">
|
|
<channel>
|
|
<title>QuakeForge News</title>
|
|
<description>Latest QuakeForge Project news</description>
|
|
<link>http://www.quakeforge.net/rss.php</link>
|
|
<copyright>Copyright 1999-2011 Contributors of the QuakeForge Project</copyright>
|
|
<?
|
|
$newsFormat = "RSS";
|
|
|
|
need ('news');
|
|
printLatestNews (5);
|
|
?>
|
|
</channel>
|
|
</rss>
|