<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" doctype-public="-//W3C//DTD XHTML 1.1//EN"/>
<xsl:template match="/">

	<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="nl">

	 <head>
	  <title><xsl:value-of select="rss/channel/title"/></title>
	  <link rel="stylesheet" href="layout/css.css" type="text/css" />
	 </head>

	 <body xmlns="http://www.w3.org/1999/xhtml">
	  <div id="container">
		<div id="header">	
			<h3 class="hdr clmag"><xsl:value-of select="rss/channel/title"/></h3>
		</div>	
		<div class="10.12.2004">
		  <div class="post">
			  <p>To get notifed whenever new reviews are written, you can use this document within an 
			  	<a href="http://www.google.com/search?q=RSS+News+Aggregator">RSS News Aggregator</a>. 
			  	The reviews below are currently being syndicated:
			  </p> 
			  <ul>
			  <xsl:for-each select="rss/channel/item">
			   <li><xsl:value-of select="substring(pubDate,5,18)"/> - <a href="{link}"><xsl:value-of select="title"/></a></li>
			  </xsl:for-each>
			  </ul>
		  </div>
		</div>
		<div id="footer">	
			<h3 class="hdr clgrr"><xsl:value-of select="rss/channel/description"/></h3>
		</div>
	  </div>
	 </body>
	
	</html>
	
</xsl:template>
</xsl:stylesheet>