<?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>
Nombre de personnes
</title>
</head>
<body>
<h1>
    Il y a <xsl:value-of select="count(//personne[@nom])" /> agents.
</h1>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
