<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE document SYSTEM "http://commons.omniupdate.com/dtd/standard.dtd"> 
<!-- 
HOME PAGE for UAEX 2013 Implementation

Contributors: Vinit Varghese, Caroline Spooner
Last Updated 7/9/2013
-->
<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">
	
	<xsl:import href="common.xsl"/>

	<xsl:template name="page-content">
		
		<div id="main">
			<div class="container">

				<xsl:comment> breadcrumbs </xsl:comment>			
				<xsl:call-template name="breadcrumb">
					<xsl:with-param name="path" select="$ou:dirname"/>								
				</xsl:call-template>
				
				<!-- intro-block -->
				<section class="intro-block g3">
					<!-- intro-text -->
					<div class="intro-text">
						<xsl:apply-templates select="content/maincontent/node()" mode="copy"/>
					</div>
					<xsl:apply-templates select="content/slider/node()" mode="homepage-gallery"/>
					<!-- gallery -->
				</section>
				
			</div>
			<!-- info-block -->
			<div class="info-block">
				<div class="container cf">
					<!-- news-block -->
					<section class="news-block g1">
						<xsl:apply-templates select="content/info/news/node()" mode="copy"/>
					</section>
					<!-- events-block -->
					<section class="events-block g1">						
						<!-- event-list -->
						<xsl:apply-templates select="content/info/events/node()" mode="copy"/>
					</section>
					<!-- info-holder -->
					<section class="info-holder g1">
						<xsl:apply-templates select="content/info/highlight/node()" mode="copy"/>
					</section>
				</div>
			</div>
			<!-- articles-block -->
			<section class="articles-block">
				<div class="container cf">					
						<xsl:apply-templates select="content/articles-large/article/node()" mode="copy"/>				
				</div>
			</section>
			<!-- articles-block -->
			<section class="articles-block grey-block">
				<div class="container cf">					
					<xsl:apply-templates select="content/articles-small/article/node()" mode="copy"/>				
				</div>
			</section>
		</div>
		
	</xsl:template>
	

	
</xsl:stylesheet>