<?xml version="1.0">
<xsl:template xmlns:xsl="uri.xsl">
    <HTML>
        <HEAD>
            <TITLE>Lista produktw</TITLE>
        </HEAD>
        <BODY>
            <TABLE cellpadding="3" cellspacing="0" border="1">
            <xsl:repeat for="Produkty/Produkt">
                <TR>
                    <TD>
                        <xsl:get-value for="NazwaProduktu"/>
                    </TD>
                    <TD>
                        <xsl:get-value for="CenaProduktu">
                    </TD></TR>
            </xsl:repeat>
            </TABLE>
        </BODY>
    </HTML>
</xsl:template>
