<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:xhtml="http://www.w3.org/1999/xhtml"
  exclude-result-prefixes="xhtml">
<xsl:output omit-xml-declaration="yes" method="xml"/>

<xsl:template match="recenttracks">
			<ol id="tracklist">
				<xsl:apply-templates select="track">
				</xsl:apply-templates>
			</ol>
</xsl:template>

<xsl:template match="track">
	<li>
		<a>
		<xsl:attribute name="href">
			<xsl:value-of select="url" />
		</xsl:attribute>
		<xsl:value-of select="artist" /> – <xsl:value-of select="name" /> (<xsl:value-of select="date" />)		
		</a>
	</li>
</xsl:template>

<xsl:template match="text()"/>

</xsl:stylesheet>