<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="3.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:ou="http://omniupdate.com/XSL/Variables"
xmlns:ouc="http://omniupdate.com/XSL/Variables"
xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="xsl ou ouc">
	
	<xsl:import href="common.xsl"/>	
	<xsl:template name="page-content">
		<table class="container">
			<tr>
				<td>
					<xsl:if test="ouc:properties/parameter[@name='show-date']/option[@selected='true']/@value = 'show'"><!--Date stamp-->
						<table class="row">
							<tr>
								<td class="wrapper last">
									<table class="twelve columns">
										<tr>							
											<td>
												<p class="date"><xsl:value-of select="ouc:properties/parameter[@name='date']" /></p>
											</td>
											<td class="expander"></td>
										</tr>
									</table>
								</td>
							</tr>
						</table>
					</xsl:if>
					<xsl:apply-templates select="ouc:div[@label='maincontent']" />
				</td>
			</tr>
		</table>
	</xsl:template>
</xsl:stylesheet>
