<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- pd 2002-05-08 0615 IST -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" version="4.0" encoding="ISO-8859-1" indent="no" />
<xsl:strip-space elements = "*" />

<xsl:template match = "rss/channel">
<html>
	<head><title><xsl:value-of select="title" /></title></head>
	<body>
		<table border="0" cellspacing="2" cellpadding="2"><tr>
			<td valign="baseline"><h1><xsl:value-of select="title" /></h1></td>
			<td valign="baseline"><i><xsl:value-of select="description" /></i></td>
		</tr>
		</table>
		<hr /><br />
		<xsl:for-each select="item">
			<div>
				<p><a href="{./guid}"><img
					src="http://www.chaoszone.org/images/hp/d.gif"
					border="0" alt="[Permanent Link]" /></a>
				<xsl:text>&#160;</xsl:text>
				<xsl:value-of select="./description" disable-output-escaping="yes"/>
				</p>
			</div>
		</xsl:for-each>
		<xsl:apply-templates select="body"/>
		<hr />
		<a href="{link}"><img src="{image/url}"
			align="right" width="{image/width}" height="{image/height}" border="0"
			title="Go to {link}" alt="Go to {link}" /></a>
		<xsl:value-of select="copyright" /><br />
		Last Updated: <xsl:value-of select="lastBuildDate" />.
	</body>
</html>
</xsl:template>

</xsl:stylesheet>
