<?xml version="1.0" encoding="utf-8"?>

<xsl:stylesheet version="1.0" xmlns="http://www.w3.org/1999/xhtml" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<meta http-equiv="Content-Style-Type" content="text/css" />

		<title>Eine Website generiert durch XSLT</title>
	</head>
	<body>
		<h1>Eine Website generiert durch XSLT</h1>

		<xsl:apply-templates />

	</body>
</html>

</xsl:template>

</xsl:stylesheet>

