<?xml version='1.0' encoding='utf-8' ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0"><xsl:output method="html" indent="yes"/>
<xsl:include href="DisplayProds.xsl"/>
<xsl:template match="/">
  <html>
    <body>
      <xsl:apply-templates/>
    </body>
  </html>
</xsl:template>

<xsl:template match="products">
	<!-- Display product information using our DisplayProducts.xsl template -->
		<xsl:call-template name="DisplayProds" >
		<xsl:with-param name="ProductNodes" select="."/>
		</xsl:call-template>
</xsl:template>

</xsl:stylesheet>

