<?xml version="1.0" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:template match="node()|@*">
    <xsl:copy>
      <xsl:apply-templates select="@* | node()" />
    </xsl:copy>
  </xsl:template>

  <xsl:template match="cmd">
    <tt><xsl:apply-templates /></tt>
  </xsl:template>
  
  <xsl:template match="code">
    <pre class="code"><xsl:apply-templates /></pre>
  </xsl:template>

  <xsl:template match="page">
    <html>
      <head>
        <title>Pingus Development - <xsl:value-of select="page/@title" /></title>
        <link rel="stylesheet" type="text/css" href="default.css" />
      </head>
      <body style="margin:0px;" text="#c0c0c0">
        <table summary="" cellpadding="10" cellspacing="0" border="0" width="100%">
          <tr>
            <td colspan="2" align="center">
              <h1>PINGUS DEVELOPERS ZONE</h1>
            </td>
          </tr>
          <tr>
            <td valign="top" align="left">
              <span class="menu">
                <a href="welcome.html">Welcome</a>
                <a href="betatest.html">Beta Testers</a>
                <a href="http://mail.freesoftware.fsf.org/pipermail/pingus-devel/" target="_blank">Mailing list</a>
              </span>

                <br/><br/><br/><br/><br/><br/>
                <br/><br/><br/><br/><br/><br/>
                <div style="background-color: darkcyan;">
                  <a href="http://pingus.seul.org">Back to:
                    <img src="../images/logo_pingus.png" alt="Pingus" border="0"/></a>
                </div>
            </td>
            <td valign="top">
              <div class="mainbody">
                <xsl:apply-templates />
              </div>
              
              <br />
              <br />
              <div align="right" style="color: white; font-size: smaller;">
                Copyright (C) 1999-2002 Ingo Ruhnke, &lt;grumbel@gmx.de&gt;
              </div>
            </td>
          </tr>
        </table>
      </body>
    </html>
  </xsl:template>
  
  <xsl:template match="section">
    <h2><xsl:value-of select="@title" /></h2>
    <xsl:apply-templates />
  </xsl:template>
  
</xsl:stylesheet>

