<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  <!-- XSL Stylesheet for Aristotelian Product List -->
  <xsl:template match="/">
    <html>
      <head>
        <title>
          <xsl:value-of select="//productList/listTitle"></xsl:value-of>
        </title>
      </head>
      <body>
        <h1>
          <xsl:value-of select="//productList/listTitle"></xsl:value-of>
        </h1>
        <div>
          <table>
            <xsl:for-each select="//productList/product">
              <tr>
                <td>
                  <xsl:value-of select="//productList/product/name"></xsl:value-of>
                </td>
                <td>
                  <xsl:value-of select="//productList/product/model"></xsl:value-of>
                </td>
                <td>
                  <xsl:value-of select="//productList/product/languages"></xsl:value-of>
                </td>
              </tr>
            </xsl:for-each>
          </table>
        </div>
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>


