<?xml version="1.0" ?> 
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
- <xsl:template match="/">
- <html>
- <head>
  <title>Mijn telefoonlijst</title> 
  </head>
- <body>
  <xsl:apply-templates select="Geheel" /> 
  </body>
  </html>
  </xsl:template>
- <!-- match alle records, sorteer deze  en schrijf tabel kop en voet 
  --> 
- <xsl:template match="Geheel">
- <table border="1">
- <thead>
- <tr>
  <td colspan="2" align="center" bgcolor="lightgrey">Mijn telefoonlijst</td> 
  </tr>
  </thead>
- <xsl:apply-templates select="Operation">
  <xsl:sort select="language" /> 
  </xsl:apply-templates>
  </table>
  </xsl:template>
- <xsl:template match="Operation">
- <tr>
- <td>
- <b>
  <xsl:value-of select="language" /> 
  </b>
  <xsl:text>-</xsl:text> 
  <xsl:value-of select="eventId" /> 
  </td>
  </tr>
  </xsl:template>
  </xsl:stylesheet>