<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:output method="html" encoding="ISO-8859-1"/>
	<xsl:template match="competition">
		<html>
			<head>
			<title><xsl:value-of select="@nom"/></title>
			<link rel="stylesheet" type="text/css" href="coupedumonde.css" media="screen" />
			</head>
			<body>
				<xsl:apply-templates/>
			</body>
		</html>
	</xsl:template>
	<xsl:template match="groupe">
		<table class="t">
			<tr>
				<th>Groupe <xsl:value-of select="@nom"/></th>
			</tr>
			<xsl:apply-templates/>
		</table>
	</xsl:template>

	<xsl:template match="pays">
		<tr>
			<td>
				<xsl:value-of select="."/>
			</td>
		</tr>
	</xsl:template>
</xsl:stylesheet>