<?xml version="1.0" ?>
<!-- Dateiname: xmlsamplelist.xsl -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="Telefonverzeichnis">
   <HTML>
      <HEAD>
         <TITLE><xsl:value-of select="Seitentitel" /></TITLE>
		</HEAD>
      <BODY>
         <H1><xsl:apply-templates select="Ueberschrift" /></H1>
         <xsl:apply-templates select="Eintrag">
            <xsl:sort select="Name" order="descending" />
         </xsl:apply-templates>
      </BODY>
   </HTML>
</xsl:template>

<xsl:template match="Eintrag">
   <P>
      <DIV>
         <STRONG>Nachname: </STRONG><xsl:value-of select="Name" />
      </DIV>
      <DIV>
         <STRONG>Vorname: </STRONG><xsl:value-of select="Vorname" />
      </DIV>
      <DIV>
         <STRONG>Tel.-Nr: </STRONG><xsl:value-of select="Telefonnummer" />
      </DIV>
   </P>
</xsl:template>

</xsl:stylesheet>
