<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
                exclude-result-prefixes="doc"
                version='1.0'>

<xsl:output method="html"
            encoding="ISO-8859-1"
            indent="no"/>

    
<xsl:template match="/">
	<html>
	<head>
		<title>Titel</title>
	</head>
	<body>
		<div align="center"><h1>nochmals Titel</h1></div>
		<xsl:apply-templates />
	
	</body>
	</html>
</xsl:template>

<xsl:template match="*">
	<xsl:value-of select="."/>
</xsl:template>

</xsl:stylesheet>
