<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>

<xsl:template match="@*|node()">
   <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
   </xsl:copy>
</xsl:template>

<xsl:template match="rss">
	<ul class="news">
		<xsl:apply-templates select="channel/item"/>
	</ul>

</xsl:template>

<xsl:template match="item">

	<li>
	<h5><xsl:value-of select="title"/></h5>
	<h6><xsl:value-of select="pubDate"/></h6>
	<xsl:apply-templates select="description"/>
	</li>

</xsl:template>


</xsl:stylesheet>