<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet 
    version="1.0" 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">


  <xsl:output method="html" />

  <xsl:template match="/">
    <html>
      <head>
        <title>XML Feed</title>
        <style type="text/css" >
          body { 
          font-family:arial, helvetica, verdana, tahoma, sans-serif;
          font-size:12px;
          color:#666; }
        </style>
      </head>
      <xsl:apply-templates select="rss/channel" />
    </html>
  </xsl:template>

  <xsl:template match="channel">
    <body>
      <table class="layout" align="center" summary="" cellspacing="0" cellpadding="0" width="800">
        <tr>
          <td>
            <h1>IFPI website RSS feed</h1>
            <p><a href="rss.html"><b>What is RSS?</b></a></p>
            <hr />
            <p>The URL of this feed is http://www.ifpi.org/content/section_news/rss.xml</p>
            <hr />
            <xsl:apply-templates select="item" />
            <hr />
          </td>
        </tr>
      </table>
    <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-874962-1";
urchinTracker();
</script>
</body>
  </xsl:template>

  <xsl:template match="item">
    <div id="item">
      <ul>
        <li>
          <a href="{link}" class="item">
            <xsl:value-of select="title" />
          </a>
          <br />
          <div>
            <xsl:value-of select="description" />
          </div>
        </li>
      </ul>
    </div>
  </xsl:template>

</xsl:stylesheet>

