<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output omit-xml-declaration="yes" indent="no"/>

<xsl:template match="/">
	<div>
		<xsl:apply-templates/>
	</div>
</xsl:template>	
	
<xsl:template match="channel">
	<h3 class="head"><xsl:value-of select="title"/></h3>
	<ul>
	<xsl:apply-templates select="item"/>
	</ul>
</xsl:template>	
	
<xsl:template match="item">
	<li><a href="{link}"><xsl:value-of select="title"/></a></li>
</xsl:template>	
	
</xsl:stylesheet>
