Warum wird das Menü nicht eingebunden ?
<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<title>Terms</title>
<link rel="stylesheet" href="/style/style_xml.css" type="text/css" />
<link rel="icon" type="image/ico" href="/favicon.ico" />
</head>
<body>
<div class="menu"><xsl:value-of select="document('/xml/documents/menu.xml')/menu/menuitem" /></div>
<div style="width: 70%; float: right;">
<xsl:apply-templates />
</div>
</body>
</html>
</xsl:template>
<!--
<xsl:template match="/menu/menuitem">
<h1><xsl:value-of select="." />Menu where are you? </h1>
</xsl:template>
-->
<xsl:template match="title">
<h1><xsl:value-of select="." /></h1>
</xsl:template>
<xsl:template match="section">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="section">
<h2><xsl:value-of select="@name" /></h2>
<xsl:apply-templates />
</xsl:template>
<xsl:template match="p">
<p><xsl:value-of select="." /></p>
</xsl:template>
</xsl:stylesheet>