<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" version="4.0" encoding="utf-8" indent="yes" />

<xsl:template match="/rss/channel">
	<html>
	<head>
		<title><xsl:value-of select="title" /> : RSS</title>
		<link rel="stylesheet" href="/style/main.css" media="all" type="text/css" />
		<link rel="stylesheet" href="/style/screen.css" media="screen" type="text/css" />
		<link rel="stylesheet" href="/style/print.css" media="print" type="text/css" />
		<link rel="stylesheet" href="/style/handheld.css" media="handheld" type="text/css" />
		<link rel="alternate" href="http://jonof.edgenetwork.org/rss.php" title="RSS 2.0" type="application/rss+xml" />
		<link rel="icon" type="image/png" href="/img/fav.png" />
		<link rel="shortcut icon" type="image/x-icon" href="/img/favicon.ico" />
	</head>
	<body>
		<div id="pageheader">
			<div id="headicons">
				<a href="/forum/"><img src="/img/iconforum.png" width="53" height="52" alt="Forums" title="Go to the forums" /></a>
				<a href="/?p=jfduke3d"><img src="/img/iconduke.png" width="53" height="52" alt="JFDuke3D" title="Go to the JFDuke3D port" /></a>
				<a href="/?p=jfsw"><img src="/img/iconsw.png" width="52" height="52" alt="JFShadowWarrior" title="Go to the JFShadowWarrior port" /></a>
			</div>
		<a href="/"><img src="/img/title2.png" width="250" height="68" alt="JonoF's Games Site" /></a>
		</div>
		<h1>RSS</h1>
		<xsl:apply-templates select="item" />
	</body>
	</html>
</xsl:template>

<xsl:template match="item">
	<div class="newsitem">
		<div class="newsheader">
			<span class="newsheading"><xsl:value-of select="title" /></span><br />
			<span class="newsdate"><xsl:value-of select="pubDate" /></span>
		</div>
		<div class="newsbody"><xsl:value-of select="description" /></div>
	</div>
</xsl:template>

</xsl:stylesheet>

