Here is the configuration I have set up:
<?xml version="1.0"?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:include href="top.xsl"/>
<xsl:template match="">
Content will be placed here - including divs and other elements
</xsl:template>
</xsl:transform>
Then, I have the following stylesheet that I am attempting to include.
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html"/>
<xsl:template match="/">
Standard html file structure now, including html, head, title, script, body, etc.
It closes like this:
<xsl:apply-templates />
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Any ideas why the include functionality is not working?
Edit: Here is the complete code: https://gist.github.com/anonymous/3432742335a8fd3c600f