aq2net.xsl 380 B

12345678910111213141516
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3. <xsl:output encoding="iso-8859-1" indent="yes" method="html"/>
  4. <xsl:template match="/">
  5. <html>
  6. <head>
  7. <title>Telefonliste</title>
  8. </head>
  9. <body bgcolor="#F0F0F0">
  10. <xsl:apply-templates select="adressen"/>
  11. </body>
  12. </html>
  13. </xsl:template>