<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">


<html>
<head>
<title>deepleap bookmarks</title>

<style>
body {font-family: verdana, arial, sans-serif;	font-size:12px;	line-height:140%;}
h2 {font-family: verdana, arial, sans-serif;font-size:18px;	line-height:140%;}
a:hover {color:#FFCC00}
</style>
<base target="_main" />
</head>

<body bgcolor="#003366" text="#ffffff" link="#99ccff" alink="#ffffff" vlink="#6699cc" >
<xsl:apply-templates />

</body>
</html>

</xsl:template>

<xsl:template match="xbel">
	<xsl:for-each select="folder">
	<h2><xsl:value-of select="@id"/></h2>
		<xsl:for-each select="bookmark">
		<a>
		<xsl:attribute name="href"><xsl:value-of select="@href"/></xsl:attribute>
		<xsl:attribute name="title"><xsl:value-of select="desc"/></xsl:attribute>
		<xsl:value-of select="title"/>
		</a><br />
		</xsl:for-each>
	<p/>
	</xsl:for-each>
</xsl:template>

</xsl:stylesheet>
