<?xml version='1.0' encoding="US-ASCII"?>
<xsl:stylesheet 
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
	xmlns:h="http://www.w3.org/1999/xhtml" 
	xmlns="http://www.w3.org/1999/xhtml" 
    exclude-result-prefixes="h" 
	version="1.0">

<xsl:output method="xml" 
	media-type="text/html"
    omit-xml-declaration="yes"
	encoding="UTF-8"
	doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" 
	doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
	/>
    
<xsl:namespace-alias stylesheet-prefix="h" 
                result-prefix="#default" />

<xsl:include href="redslider.xsl"/>



<xsl:template match="h:html">
    <html>
        <xsl:call-template name="common-lang"/>
        <xsl:apply-templates select="h:head | h:body"/>
    </html>
</xsl:template>



<xsl:template match="h:head">
    <head>
        <title>
            <xsl:value-of select="h:title"/>
            <xsl:text> - Jeroen Pulles</xsl:text>
        </title>
        <xsl:call-template name="common-head"/>
    </head>
</xsl:template>



<xsl:template match="h:body">
    <body>
        <xsl:call-template name="navpanel"/>
        <xsl:call-template name="common-meta-in-body"/>
        
        <div class="content note">
            <h1>
                <xsl:value-of select="../h:head/h:title"/>
            </h1>
            <xsl:apply-templates select="*"/>
        </div>
    </body>
</xsl:template>


</xsl:stylesheet>
