home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0"?>
-
- <!-- Written by Stefano Mazzocchi <stefano@apache.org> -->
-
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
-
- <xsl:template match="page">
- <html>
- <head>
- <title>
- <xsl:value-of select="title"/>
- </title>
- </head>
- <body bgcolor="#ffffff">
- <xsl:apply-templates/>
- </body>
- </html>
- </xsl:template>
-
- <xsl:template match="title">
- <h1 align="center">
- <xsl:apply-templates/>
- </h1>
- </xsl:template>
-
- <xsl:template match="content">
- <xsl:apply-templates/>
- </xsl:template>
-
- <xsl:template match="paragraph">
- <p align="center">
- <i>
- <xsl:apply-templates/><p>
- <a href="http://dehua">Home!</a>
- </p>
- </i>
- </p>
- </xsl:template>
-
- <xsl:template match="link_a">
- <p align="center">
- <b>
- <xsl:apply-templates/>
- </b>
- </p>
- </xsl:template>
-
-
- </xsl:stylesheet>