<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
	version="1.0" 
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
	xmlns:dc="http://purl.org/dc/elements/1.1/" 
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" 
	xmlns:co="http://purl.org/rss/1.0/modules/company/" 
	xmlns:ti="http://purl.org/rss/1.0/modules/textinput/" 
	xmlns:rss="http://purl.org/rss/1.0/" 
	exclude-result-prefixes="rss dc rdf sy co ti" >
  <xsl:output 
	method="xml" 
	omit-xml-declaration="no" 
	indent="yes" 
	encoding="iso-8859-1" 
	media-type="text/html" 
	doctype-public="-//W3C//DTD XHTML 1.1//EN" 
	doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" />
  <xsl:template match="rdf:RDF" >
      <html xml:lang="en">
      <head> <title> 

      <xsl:value-of select="//rdf:RDF/rss:channel/rss:title" /> 

       </title>
      <link rel="alternate" type="application/rss+xml" title="RSS" href="{//rdf:RDF/rss:channel/@rdf:about}" />
    </head>
    <body>
    <div class="body">
	<h1><a href="{//rdf:RDF/rss:channel/rss:link}">
		<xsl:value-of select="//rdf:RDF/rss:channel/rss:title"/></a> 
		- <span class="tagLine"><xsl:value-of select="//rdf:RDF/rss:channel/rss:description"/></span>
	</h1>
	<div class="byline">by <xsl:value-of select="//rdf:RDF/rss:channel/dc:creator"/></div>
    <div class="content">
        <xsl:apply-templates select="//rdf:RDF/rss:item"/>
    </div>

       </div>

      </body>
    </html>       
  </xsl:template>

  <xsl:template match="rss:item">       
       <div class="item">
           <h2><a href="{rss:link}" id="{@id}"><xsl:value-of select = "rss:title" /></a></h2>
	<xsl:text> :: </xsl:text><xsl:value-of select = "dc:date" />
           <div class="itemContent"><xsl:value-of disable-output-escaping="yes" select="rss:description" />
           </div>
       </div>
  </xsl:template>

</xsl:stylesheet>













