<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" 
xmlns:xhtml="http://www.w3.org/1999/xhtml">

<!-- adapted from Leigh Dodds' foaf bulletin board xslt: 
http://www.ldodds.com/foaf/bulletin.xsl, 
http://www.ldodds.com/foaf/bulletin-board.html --> 

   <xsl:template match="/">
      <rdf:RDF><rdf:Description rdf:about="">
         <xsl:apply-templates 
select="xhtml:html/xhtml:body/xhtml:div/xhtml:div/xhtml:ul/xhtml:li/xhtml:p/xhtml:a[1]"/>
      </rdf:Description></rdf:RDF>
   </xsl:template>
   <xsl:template match="xhtml:a">
      <rdfs:seeAlso rdf:resource="{@href}"/>
   </xsl:template>
   <xsl:template match="*"/>
</xsl:stylesheet>
