<?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" encoding="UTF-8" indent="yes"
  doctype-public="-//W3C/DTD HTML 4.01//EN"
  doctype-system="http://www.w3.org/TR/html4/strict.dtd"
  standalone="yes" omit-xml-declaration="yes"
  />

<xsl:template match="/">
  <xsl:apply-templates/>
</xsl:template>

<xsl:template match="channel">
  <h1>
    <a href="{link}">
      <xsl:value-of select="title"/>
    </a>
  </h1>
  <h3>
    <xsl:value-of select="description"/>
  </h3>
  
  <xsl:for-each select="item">
    <xsl:call-template name="item"/>
  </xsl:for-each>
  
</xsl:template>

<xsl:template name="item">
  <div class="rssStory">
    <h3>
      <a href="{link}"><xsl:value-of select="title"/></a>
    </h3>
    <xsl:value-of select="description"/>
  </div>
</xsl:template>

</xsl:stylesheet>
  