<?xml version="1.0"?>
<xsl:stylesheet version="1.0" 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<!-- 
a simple xslt stylesheet for browsing a furl archive locally
see: http://www.socio-kybernetics.net/saurierduval/2005/06/how-to-browse-your-furl-archive.html
-->

<xsl:template match="archive">
  <html>
    <head>
      <title>local furl archive for <xsl:value-of select="@owner" /></title>
    </head>
    <body>
      <xsl:apply-templates select="entry">
        <xsl:sort select="@title" />
      </xsl:apply-templates>
    </body>
  </html>
</xsl:template>
  
<xsl:template match="entry">
  <a href="{@path}"><xsl:value-of select="@title" /></a><br />
</xsl:template>
  
</xsl:stylesheet>

