<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY amp   "&#38;">
<!ENTITY copy   "&#169;">
<!ENTITY gt   "&#62;">
<!ENTITY hellip "&#8230;">
<!ENTITY laquo  "&#171;">
<!ENTITY lsaquo   "&#8249;">
<!ENTITY lsquo   "&#8216;">
<!ENTITY lt   "&#60;">
<!ENTITY nbsp   "&#160;">
<!ENTITY quot   "&#34;">
<!ENTITY raquo  "&#187;">
<!ENTITY rsaquo   "&#8250;">
<!ENTITY rsquo   "&#8217;">
]>

<!--
	Implementation Skeleton - 08/24/2018

	Variables XSL
	Customer Variables particular to the school
-->

<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"
	exclude-result-prefixes="ou xsl xs fn ouc">

	<!-- production server type -->
	<xsl:variable name="server-type" select="'php'"/>
	<!-- production server include type -->
	<xsl:variable name="include-type" select="'php'"/>
	<!-- production server index file name -->
	<xsl:variable name="index-file" select="'index'"/>
	<!-- production server file type extension -->
	<xsl:variable name="extension" select="'html'"/>
	<!-- enable ou search tags to be output around the include functions and other places -->
	<xsl:variable name="enable-ou-search-tags" select="false()"/>
	<!-- xsl param to enable social meta tag output onto the pages -->
	<xsl:param name="enable-social-meta-tag-output" select="false()" />

	<!--
		Directory Variables (add "ou:" before variable name - in XSL only)
		Example: <xsl:param name="ou:theme-color" /> ... Where "theme-color" is the Directory Variable name
	-->

	<!-- insert customer variables and directory variables -->

</xsl:stylesheet>