<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:output method="xhtml"/>

<xsl:template match="/site/pages/index">
   <xsl:apply-templates />
</xsl:template>

<xsl:template match="title">
	<html />
	<head />
	<title><xsl:template value-of select="title"></title>
	<xsl:apply-templates />
</xsl:template>

<xsl:template match="style">
	<link rel="stylesheet">
		<xsl:attribute name="href"><xsl:value-of select="style"/></xsl:attribute>
	</link>
</xsl:template>

<xsl:template match="layout">
	<link rel="stylesheet">
		<xsl:attribute name="href"><xsl:value-of select="layout"/></xsl:attribute>
	</link>
</xsl:template>

</xsl:stylesheet>