- <?xml version="1.0" encoding="ISO-8859-1"?>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
- <xsl:output encoding="iso-8859-1" indent="yes" method="html"/>
- <xsl:template match="/">
- <html>
- <head>
- <title>Telefonliste</title>
- </head>
- <body bgcolor="#F0F0F0">
- <xsl:apply-templates select="adressen"/>
- </body>
- </html>
- </xsl:template>
|