<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp   "&#160;">
<!ENTITY copy   "&#169;">
]> 
<!-- 
Implementations Skeleton - 05/12/2016

INTERIOR PAGE 
A simple page type.

Contributors: Your Name Here
Last Updated: Enter Date Here
-->
<xsl:stylesheet version="3.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:ou="http://omniupdate.com/XSL/Variables"
    xmlns:fn="http://omniupdate.com/XSL/Functions"
    xmlns:ouc="http://omniupdate.com/XSL/Variables"
    xmlns:svg="http://www.w3.org/2000/svg"
    exclude-result-prefixes="ou xsl xs fn ouc svg">
    
    <xsl:import href="common.xsl"/>
    
    <xsl:template name="template-footcode"/>
    <xsl:template name="common-header"/>
    <xsl:template name="page-content"/>

    
    
    
    <xsl:output method="html" version="4.0" indent="yes" encoding="UTF-8" include-content-type="no" omit-xml-declaration="yes"/>
    
    <xsl:template match="/document[$ou:action = 'pub']">
        <xsl:call-template name="common-footer" />
    </xsl:template>
    
    <!-- Footer template -->
    <xsl:template name="common-footer">
        
            <section id="footer-primary-links">
                <h2 class="hidden-header">Social Media Links and Contact Information</h2>
                <xsl:apply-templates select="ouc:div[@label='primary-links']" />	
            </section>
		
		<section id="contactinfo">
				<xsl:apply-templates select="ouc:div[@label='cpeaddress']" />		
		</section>
		
		<section id="footer-secondary-links">
				
		<xsl:apply-templates select="ouc:div[@label='secondary-links']" />
		<xsl:copy-of select="ou:include-file('/_resources/includes/footer-copyright.inc')"/>
		</section>


        
    </xsl:template>
    
    <!--<xsl:template match="ul">
        <ul class="list-unstyled list-inline">
            <xsl:apply-templates/>
        </ul>
    </xsl:template>-->
    
    
</xsl:stylesheet>

