<?xml version="1.0"?>
<xsl:stylesheet version="1.0" 
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="html" />
<xsl:template match="/rss">
	<div>
	<xsl:for-each select="//item">
		<h2><xsl:value-of select="title"/></h2>
	</xsl:for-each>
</div>
</xsl:template>
</xsl:stylesheet>
<!-- /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ -->
