<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="/">
    <html>
      <head>
        <title><xsl:value-of select="/rss/channel/title" /></title>

        <style type="text/css">
        </style>
        
        <script type="text/javascript" 
           src="http://aspnet.4guysfromrolla.com/rss/disableOutputEscaping.js" />
      </head>
      
      <body onload="go_decoding();">
        <div id="cometestme" style="display:none;">
          <xsl:text disable-output-escaping="yes">&amp;</xsl:text>
        </div>

        <div align="center">
          <div id="headerInfo">
            <h1><xsl:value-of select="/rss/channel/title" /></h1>
            <p align="center" id="headerText">This page is the syndication feed for 
            <b><xsl:value-of select="/rss/channel/title" /></b>
            </p>
          </div>
        </div>
      
        <div align="center">
          <div id="feedItems">
            <xsl:for-each select="/rss/channel/item">
              <div class="rssItem">
                <h2 class="rssTitle">
                   <a href="{link}"><xsl:value-of select="title" /></a>
                </h2>
                <div name="decodeable" class="rssDescription">
                  <xsl:value-of select="description" disable-output-escaping="yes" />
                </div>
              </div>            
            </xsl:for-each>
          </div>
        </div>        
  
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>


