<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0" 
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns="http://www.w3.org/1999/xhtml">

  <xsl:output 
    method="xml"
    encoding="iso-8859-1"
    indent="yes"
    doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
    doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
  />

<xsl:template match="/">

    <html>
      <head>
<title>Trillium University Culinary School - Recipe </title>
<style type="text/css">
body { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: #ffffb0;}

a:active { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11pt; color: #FF00FF; text-decoration: none;}

a:hover { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11pt; color: #000033; text-decoration: none;}

a:link { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11pt; color: #0000FF; text-decoration: none;}

a:visited { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11pt; color: #999999; text-decoration: none;}

h3: {font-size: 1.5em;}

</style>
      </head>
      <body bgcolor="#ffffb0">

       <xsl:apply-templates />

      </body>
    </html>

  </xsl:template>

<xsl:template match="recipe">
<a href="../../recipeindex.php"><img src="../../images/tu.gif" border="0" /> INDEX</a>


<script type="text/javascript">
google_ad_client = "pub-7060606726839943";
google_ad_slot = "8522200609";
google_ad_width = 728;
google_ad_height = 90;
</script>

<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>







<table width="100%" cellpadding="3" border="0">
<tr>
<td><b> Category: </b><xsl:value-of select="category" /></td>
<td><center><b>Yield: </b><xsl:value-of select="yield" /></center></td>
<td align="right"><b>Preperation time: </b><xsl:value-of select="prep_time" /> </td>
</tr>

<tr><td colspan="3"><center>
<h1><xsl:value-of select="title" /></h1>
</center></td></tr>

<tr><td colspan="3"><center>
<h2>Cook: <xsl:value-of select="cook" /></h2>
</center></td></tr>

<tr><td colspan="3"><center>
<xsl:value-of select="description" />
</center></td></tr>


<tr><td colspan="1" valign="top">
 <center><h3>Ingredients:</h3></center>
 <blockquote>
  <ul>
   <xsl:for-each select="ingredients/item">
    <li><xsl:apply-templates/>
    </li>
   </xsl:for-each>
  </ul>
 </blockquote>
</td>


<td colspan="2" valign="top"><center><p>
 <xsl:element name="img">
   <xsl:attribute name="src">
    <xsl:value-of select="illustration/@href"/>
   </xsl:attribute>
 </xsl:element>
</p></center></td></tr>

<tr>
<td colspan="3">
<blockquote>
<center><h3>Directions:</h3></center>
<ol>
    <xsl:for-each select="directions/step">
      <li><xsl:apply-templates/></li><br/><br/>
    </xsl:for-each>
</ol>
</blockquote>
</td>
</tr>

<tr><td colspan="3"><blockquote><blockquote><p>
<b>Comments: </b><xsl:value-of select="comment" />
</p></blockquote></blockquote></td></tr>


</table>

<br/><br/>
<center>
<img src="../../images/tuletters002.gif"/><br/>
<h3>School of Culinary Arts Recipe Book</h3>
Presented by...<br />
<img src="../../images/daviesban04.gif"/><br /><br />
<img src="../../images/valid-xml10.png"/>

</center>



</xsl:template>

</xsl:stylesheet>
