<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
	<xsl:import href="htmlformat.xsl"/>
	<xsl:output method="xml" indent="no" omit-xml-declaration="yes"/>
	<xsl:template match="/">
		<html>
			<head>
				<title>
					TotallySmartIT - <xsl:value-of select="page/title"/>
				</title>
				<xsl:copy-of select="page/head"/>
			</head>
			<body>
				<xsl:apply-templates select="page/paras/para"/>
			</body>
		</html>
	</xsl:template>
</xsl:stylesheet>

