<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="Recipe">
    <h2><xsl:value-of select="Name" /></h2>
    <xsl:for-each select="Ingredients/Ingredient" >
      <li><xsl:value-of select="." /></li>
    </xsl:for-each>
  </xsl:template>
</xsl:stylesheet>
