<?xml version="1.0" encoding="UTF-8"?>
<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" indent="yes"/>
   <xsl:template match="/">
      <xsl:apply-templates select="rss/channel" />
   </xsl:template>

   <xsl:template match="channel">
      <h2>
         <a href="{link}" target="_blank"><xsl:value-of select="title" /></a>
      </h2>
      <ul>
         <xsl:apply-templates select="item" />
      </ul>
   </xsl:template>

   <xsl:template match="item">
      <li>
         <a href="{link}" target="_blank"><xsl:value-of select="title" /></a>
         - <xsl:value-of select="pubDate" />
         <br />
         <xsl:value-of disable-output-escaping="yes" select="description" />
         <p/>
      </li>
   </xsl:template>
</xsl:stylesheet>

