<?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="References/@NOM"/></title>
   </head>
<body>
	    <xsl:apply-templates select="References"/>

</body> </html>
</xsl:template>
<xsl:template match="References">
<table border="1"> <tr> <xsl:apply-templates select="Imagec"/>
 <td align="left">Documents de <xsl:value-of select="@NOM"/></td></tr>
<tr><table border="1"><thead><tr><th>Titre</th><th>Description</th><th>Lien d'acces</th><th>Sujets</th></tr></thead>
<tfoot><tr><td colspan="4">References sur Haiti. Courtoisie de Gexpert haiti.</td></tr></tfoot>
	<xsl:apply-templates select="Reference"/> </table></tr> </table>
 </xsl:template>
<xsl:template match="Reference">
<tr>
<td><xsl:value-of select="Titre"/></td>
<td><xsl:choose>
<xsl:when test="Description">
<xsl:value-of select="Description"/></xsl:when>
</xsl:choose></td>
<xsl:apply-templates select="Lienc"/>
<td><xsl:choose>
<xsl:when test="Sujets">
<xsl:value-of select="Sujets"/></xsl:when>
</xsl:choose></td>
</tr></xsl:template>
</xsl:stylesheet>
