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

<xsl:output method="html" indent="yes"/>



 


<xsl:template match="/">

   <html>
   <head>
	
	   <title><xsl:value-of select="descript/title"/></title>
	
   </head>
   <body>

   

   <xsl:apply-templates/>

   </body>
   </html>
</xsl:template>


<xsl:template match="title">
<h3><xsl:apply-templates/></h3>
</xsl:template>



<xsl:template match="collat/numleaf">
<p>Number of leaves:<br /><i><xsl:apply-templates/></i></p>
</xsl:template>

<xsl:template match="abstract | note | text | link | pagfol "/>

</xsl:stylesheet>

