<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xsl:stylesheet>
<!-- 
LANDING PAGE for Schoolname 2013 Implementation
A complex pagetype.

Contributors: Your Name Here
Last Updated 4/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"/>	
	
	<!-- no dynamic 3rd level tagging -->
	<xsl:template match="ouc:div" mode="copy">
		<ouc:div>
			<xsl:apply-templates select="attribute()|node()" mode="copy"/>
		</ouc:div>
	</xsl:template>
		
	<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>
			
		     <!-- drop navigation -->
            <nav class="drop-nav">
               <xsl:call-template name="drop-nav">
               	<xsl:with-param name="key" select="$ou:accessKey"/>
               </xsl:call-template>
            </nav>
				
			<article class="intro-frame g3">
				<div class="photo">
					<xsl:apply-templates select="content/intro/photo/node()" mode="copy"/>
				</div>
				<div class="description">
					<xsl:apply-templates select="content/intro/content/node()" mode="copy"/>
				</div>
			</article>
		</div>
		
		<div class="info-block">
			<div class="container cf">
				<article class="video-block">
					<xsl:apply-templates select="content/video/node()" mode="copy"/>
				</article>			
				<section class="publications-block">
					<xsl:apply-templates select="content/publications/node()" mode="copy"/>
				</section>
			</div>
		</div>
		
		<section class="articles-block articles-block-alt">
			<div class="container cf">
				<header class="heading g3">
					<xsl:apply-templates select="content/articles/title/node()" mode="copy"/>
				</header>
				<div class="cf">
					<xsl:apply-templates select="content/articles/content/node()" mode="copy"/>
				</div>
			</div>
		</section>
		
		<section class="articles-block grey-block info-row">
			<div class="container cf">
			
			<section class="info-area">
				<xsl:apply-templates select="content/info/block[1]/node()" mode="copy"/>
			</section>
			
			<section class="info-area">
				<xsl:apply-templates select="content/info/block[2]/node()" mode="copy"/>
			</section>
			
			
			</div>
		</section>
		
	</div>
		
	</xsl:template>
	
		
</xsl:stylesheet>