<?xml version="1.0" encoding="ISO-8859-1"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
		xmlns:al="http://www.logilab.org/namespaces/Narval/1.2">

  <xsl:output method="html" 
              encoding="ISO-8859-1" 
	      />

<xsl:template match="cookbook">
<html>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>


<xsl:template match="al:recipe">
<h2><xsl:value-of select="@name"/></h2>
<p><xsl:value-of select="./al:description/text()"/></p>
</xsl:template>

</xsl:stylesheet>