<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
	<xsl:output method="xml" indent="yes"/>

	<xsl:template match="/">
		<html>
			<head>
				<title>Platform Test Page</title>
			</head>
			<body>
				<center>
					<h1>This is a test page</h1>
				</center>
				<blockquote>
					<h2>For the deployment test.</h2>
					<p>
					Configuration value:
					<xsl:value-of select="platform" />
					</p>
				</blockquote>
			</body>
		</html>
	</xsl:template>
</xsl:stylesheet>
