<?xml version="1.0"?>
-<content title="Members Area">
+<html>
+ <head>
+ <title>Members Area</title>
+ </head>
+ <body>
<h1>Members Area</h1>
This page has restricted access, so that members of the project only
General development issues of the project
</dd>
</dl>
-</content>
+ </body>
+</html>
<xsl:param name="path_to_top" select="'.'"/>
-<xsl:template match="content">
+<xsl:template match="html">
<html>
<head>
- <title><xsl:value-of select="@title"/></title>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <title><xsl:value-of select="head/title"/></title>
<link rel="stylesheet" href="{$path_to_top}/../style/mowgli.css" type="text/css"/>
</head>
<body>
<xsl:call-template name="head">
<xsl:with-param name="path_to_top" select="$path_to_top"/>
</xsl:call-template>
- <xsl:copy-of select="node()"/>
+ <xsl:copy-of select="body/node()"/>
<xsl:call-template name="foot">
<xsl:with-param name="path_to_top" select="$path_to_top"/>
</xsl:call-template>