<?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 (tri par nom)
</title>
</head>
<body>
<h1>
Liste des personnes (tri par nom)
</h1>
<blockquote>
    <xsl:apply-templates select="//personne">
      <xsl:sort select="nom" />
    </xsl:apply-templates>
</blockquote>
</body>
</html>
</xsl:template>

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

</xsl:stylesheet>
