<?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" />

	<xsl:template match="/"> 
		<html>
			<head>
				<title>Cinema</title>
			</head>
			<body>
				<h1>Liste de films</h1>
				<ul>
					<xsl:apply-templates select="cinema/film"/>
				</ul>
			</body>
		</html>
	</xsl:template>

	<xsl:template match="cinema/film"> 
			<li>
				<xsl:value-of select="titre"/> 
			</li>
	</xsl:template>

</xsl:stylesheet>
