<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:html="http://www.w3.org/1999/xhtml">

<xsl:template match="/">
<xsl:text disable-output-escaping="yes">
<![CDATA[ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> ]]>
   </xsl:text>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
 <head>
  <meta http-equiv="content-type" content="application/xhtml+xml;
     charset=iso-8859-1" />
  <link rel="stylesheet" type="text/css" href="../css_laure.css"
    title="Purple Haze Stylesheet" />
 <title>laure.gonnord.org - Recettes</title>
 </head>
          
  <body>
    <div id="top"></div>
  
    <!-- ###### Header ###### -->

    <div id="header">
      <span class="headerTitle">laure.gonnord.org / Recettes</span>
</div>

    <!-- ###### Side Boxes ###### -->

    <div class="sideBox LHS">
      <div>Recettes dispo</div>
<span>
<xsl:for-each select="//recette">
 <xsl:element name="a">
  <xsl:attribute name="href">
    <xsl:text>#</xsl:text><xsl:value-of select="@id" />
  </xsl:attribute>
  <xsl:value-of select="./titre" />
 </xsl:element>
</xsl:for-each>
</span>

    </div>


    <div class="sideBox RHS">
      <div>Navigation</div>
      <span>
<a href="../">Retour page précédente</a>
<a href="http://www.gonnord.org/">GONNORD.ORG</a>
<a href="http://www-verimag.imag.fr/~danthony/">Laure - pro</a>
<a href="http://stephane.gonnord.org">Stéphane - pro</a>
<a href="http://www.gonnord.org/pir2/">Chat</a>
<a href="http://www.gonnord.org/marine/">Marine</a>
      </span>
    </div>

    <!-- ###### Body Text ###### -->



    <div id="bodyText">
 <xsl:apply-templates />
    </div>
    
    <!-- ###### Footer ###### -->

    <div><div id="footer">  <!-- NB: outer <div> required for correct rendering in IE -->

<div>
<br />
Copirate 2003, oswd.org

</div>

      </div>
      </div>
  </body>
</html>

</xsl:template>

<xsl:template match="par">
<html:p>
 <xsl:value-of select="." />
</html:p>
</xsl:template>

<xsl:template match="recette">
 <html:h1>
   <xsl:attribute name="id">
     <xsl:value-of select="@id"/>
   </xsl:attribute>
   <xsl:value-of select="./titre" />
 </html:h1>
 
 <html:ul>
  <html:li><b>Ingrédients et matériel</b> : 

  <xsl:value-of select="./ing" />
  </html:li>
  <html:li><b>Procédé</b> : 
  <xsl:apply-templates select="./proc" />
  </html:li>
 </html:ul>
 <html:a class="topOfPage" href="#top" title="Haut de page">top</html:a>
</xsl:template>

</xsl:stylesheet>
