<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns="http://www.w3.org/1999/xhtml" xmlns:fn="http://www.w3.org/2005/xpath-functions" xmlns:myNS="http://devedge.netscape.com/2002/de"
 xmlns:xi="http://www.w3.org/2001/XInclude">
<xsl:output method="html" encoding="utf-8"/>
<xsl:include href="http://www.gexperthaiti.com/xml/Liens.xsl"/>
 <xsl:template match="/">
<html>
 <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
      <title><xsl:value-of select="Edition/@NOM"/></title>
   </head>
<body> <table border="1">
	    <xsl:apply-templates select="Edition"/>
</table>
</body> </html>
</xsl:template>
<xsl:template match="Edition">
<tr> <td><xsl:apply-templates select="Image"/></td>
<td align="left">Livres des <xsl:value-of select="@NOM"/></td>
</tr><tr> <table border="1">
<tr><th>ISBN</th><th>Titre</th><th>Auteur</th><th>Quantite</th><th>Prix en $CAN</th></tr>
	<xsl:apply-templates select="Livre"/> </table> </tr>
 </xsl:template>
<xsl:template match="Livre">
<tr><td><xsl:value-of select="@ISBN"/></td>
<td><xsl:value-of select="text()"/></td>
<td><xsl:value-of select="Auteur"/></td>
<td><xsl:value-of select="Qte"/></td>
<td><xsl:value-of select="Prix"/></td></tr>
</xsl:template>
</xsl:stylesheet>