<?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:output method="xml" encoding="UTF-8" indent="yes" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" omit-xml-declaration="yes" />

<xsl:include href="root.xsl" />

<xsl:template match="/home">

	<h2><xsl:value-of select="title" /></h2>
	<p><xsl:value-of select="text" /></p>

</xsl:template>

</xsl:stylesheet>

