<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">        <xsl:output method="xml" indent="yes" doctype-public="-//W3C//DTD XHTML 1.1//EN" doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"/>
        <xsl:template match="/*">
                <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
                        <head>
                                <title>Code Journal</title>
                        </head>
                        <body>
                                <xsl:for-each select="*">
                                <h1><xsl:value-of select="@project"/> - <xsl:value-of select="@date"/></h1>
                                <pre><xsl:value-of select="text"/></pre>
                                </xsl:for-each>
                        </body>
                </html>
        </xsl:template>
</xsl:stylesheet>

