1<?xml version="1.0" encoding="UTF-8"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3
4	<xsl:output method="xml" indent="yes" media-type="text/html"/>
5	<xsl:param name="title"/>
6
7	<xsl:template match="/">
8		<html>
9			<head>
10				<title><xsl:value-of select="$title"/></title>
11			</head>
12			<body>
13				<table>
14					<xsl:apply-templates select="/products/product"/>
15				</table>
16			</body>
17		</html>
18	</xsl:template>
19
20</xsl:stylesheet>
21