1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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><xsl:value-of select="mnet@desc"/></title>
- </head>
- <body>
- <xsl:apply-templates select="mnet"/>
- </body>
- </html>
- </xsl:template>
- <xsl:template match="mnet">
- <table>
- <tr>
- <td>
- <h2><xsl:value-of select="@desc"/></h2>
- </td>
- </tr>
- <xsl:apply-templates select="information"/>
-
- <tr>
- <td>Bots</td>
- </tr>
- </table>
- <p><xsl:value-of select="name"/></p>
- </xsl:template>
- <xsl:template match="information">
- <tr>
- <td>Contact Information</td>
- </tr>
- </xsl:template>
- </xsl:stylesheet>
|