<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
    version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    
    
    <xsl:output method="html" encoding="UTF-8"/>
    
    
    <xsl:template
        match="/"><xsl:apply-templates/>
    </xsl:template>
    
    <xsl:template match="head">
        <head>
        <link
            href="chs.css"
            rel="stylesheet"
            type="text/css"/>
        
       
        <xsl:apply-templates/>
            </head>
    </xsl:template>
    
    <xsl:template match="body">
        <body>
        <xsl:apply-templates/>
            <!-- <div class="footer">
        <p>Installation date goes here</p></div> -->
        </body>
    </xsl:template>
    
    <xsl:template
        match="@*|node()"
        priority="-1">
        <xsl:copy>
            <xsl:apply-templates
                select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
    
</xsl:stylesheet>
