2020-10-09 05:36:03 -04:00
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
2020-10-09 06:26:18 -04:00
|
|
|
<xsl:output method="html" doctype-system="about:legacy-compat" encoding="utf-8" />
|
|
|
|
<!-- Import include files -->
|
|
|
|
<xsl:include href="includes/head.xsl"/>
|
|
|
|
<xsl:include href="includes/header.xsl"/>
|
|
|
|
<xsl:include href="includes/footer.xsl"/>
|
2018-05-04 08:52:29 -04:00
|
|
|
|
2020-10-09 06:26:18 -04:00
|
|
|
<xsl:template match="/node()">
|
|
|
|
<html>
|
2018-05-04 08:52:29 -04:00
|
|
|
|
2020-10-09 06:26:18 -04:00
|
|
|
<xsl:call-template name="head">
|
|
|
|
<xsl:with-param name="title" select="$title" />
|
|
|
|
</xsl:call-template>
|
2018-05-04 08:52:29 -04:00
|
|
|
|
2020-10-09 06:26:18 -04:00
|
|
|
<body>
|
|
|
|
<!-- Header/Menu -->
|
|
|
|
<xsl:call-template name="header" />
|
2018-05-04 08:52:29 -04:00
|
|
|
|
2020-10-09 06:26:18 -04:00
|
|
|
<main role="main">
|
|
|
|
<xsl:call-template name="content" />
|
|
|
|
</main>
|
2018-05-04 08:52:29 -04:00
|
|
|
|
2020-10-09 06:26:18 -04:00
|
|
|
<!-- Footer -->
|
|
|
|
<footer>
|
|
|
|
<xsl:call-template name="footer" />
|
|
|
|
</footer>
|
2018-05-04 08:52:29 -04:00
|
|
|
|
2020-10-09 06:26:18 -04:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
</xsl:template>
|
2018-05-04 08:52:29 -04:00
|
|
|
</xsl:stylesheet>
|