<?xml version="1.0" encoding="UTF-8" ?> 
<!--  Style RSS so that it is readable. 
  --> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:template match="/rss">
    <html>
      <head>
        <link rel="stylesheet" href="bluestyle2.css" type="text/css" /> 
        <title>  RSS feed for  <xsl:value-of select="channel/title" /> 
        </title>
      </head>
     <body>
     <h1> RSS feed for <xsl:value-of select="channel/title" /></h1>
	<div class='Teaser'>
     <p>
       This is the <a href="http://blogs.law.harvard.edu/tech/rss">RSS</a> feed for the web site <a href="{channel/link}">
       <xsl:if test="channel/description != ''">
         .: 
           <xsl:value-of select="channel/description" /> 
         :. 
       </xsl:if></a>. It is an XML document (even though it looks much nicer than one). </p>
<p> You can subscribe to this feed using your //<a href='http://rssbandit.org'>favourite</a>// 
       <a href="http://dmoz.org/Reference/Libraries/Library_and_Information_Science/Technical_Services/Cataloguing/Metadata/RDF/Applications/RSS/News_Readers/">News Aggregator</a>, and thus be notified <i>automagically</i> when new entries are added. 
     </p>
	</div>
<br /><br />
     <xsl:apply-templates select="channel/item" /> 
     
     
	<div class='Teaser'>
     <p>
       The format of this feed was devised by <a href="http://blog.monstuff.com">Julien Couvreur</a>, based upon the work of <a href="http://www.nedbatchelder.com">Ned Batchelder</a>, and later messed up for <a href='http://secretGeek.net'>secretGeek.net</a>. 
     </p>
		 <p><a href="http://feedvalidator.org/check.cgi?url=http://secretgeek.net/rss.asp"><img src="valid-rss.png" alt="[Valid RSS]" title="Validate my RSS feed" /></a></p>
</div>
     </body>
   </html>  
 </xsl:template>

 <xsl:template match="item">
  <h2>
  <a href="{link}">
    <xsl:value-of select="title" /> 
    </a>
    </h2>
  <i>
  <xsl:value-of select="pubDate" /> 
  </i>
  <p>
  <xsl:value-of select="description" disable-output-escaping="yes" /> 
  <a href="{link}">read on...</a>.<br />
 <hr /> 

</p>
</xsl:template>
</xsl:stylesheet>
