<?xml version="1.0" ?>
<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="/">
<html>
<head>
<title>
Liste des personnes
</title>
</head>
<body>
<h1>
Liste des personnes
</h1>
<blockquote>
    <xsl:apply-templates select="//personne" />
</blockquote>
</body>
</html>
</xsl:template>

<xsl:template match="personne">
     <p>
     <xsl:value-of select="@nom" />
     </p>
</xsl:template>

</xsl:stylesheet>
