aq2net.xsl_back 769 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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><xsl:value-of select="mnet@desc"/></title>
  8. </head>
  9. <body>
  10. <xsl:apply-templates select="mnet"/>
  11. </body>
  12. </html>
  13. </xsl:template>
  14. <xsl:template match="mnet">
  15. <table>
  16. <tr>
  17. <td>
  18. <h2><xsl:value-of select="@desc"/></h2>
  19. </td>
  20. </tr>
  21. <xsl:apply-templates select="information"/>
  22. <tr>
  23. <td>Bots</td>
  24. </tr>
  25. </table>
  26. <p><xsl:value-of select="name"/></p>
  27. </xsl:template>
  28. <xsl:template match="information">
  29. <tr>
  30. <td>Contact Information</td>
  31. </tr>
  32. </xsl:template>
  33. </xsl:stylesheet>