<?xml version="1.0"?>

<!-- stylesheet specifications page.xsl begin -->
<!-- author: Kevin Pinte (kpinte@vub.ac.be)  -->

<xsl:stylesheet version="1.0" 
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:xhtml="http://www.w3.org/1999/xhtml">
	
	<!-- Import the global templates -->
	<xsl:include href="templates.xsl"/>
	<xsl:include href="user.xsl" />

	<xsl:template match="PAGE">


		<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-AU">
			<head>
				<meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8" />
				<meta name="author" content="SE4 2006" />
				<meta name="keywords" content="eventure, software engineering, vub, se4, se4_2006, " />
				<meta name="description" content="eVenture provides you with a personalised list of hot events!" />
				<title>eVenture v1.0</title>

				<link rel="stylesheet" type="text/css" href="eventure_grey.css" media="screen, tv, projection" />
				<link rel="stylesheet" type="text/css" href="eventure_grey_print.css" media="print" />
			</head>

			<body>

				<div id="layoutBox">

					<div id="headerBox">
						<div id="headerLeftBox">
							<span class="title">
								eVenture v1.0
							</span>
							<br />
							<span class="subTitle">
								what's up tonight?
							</span>
						</div>
						<div id="headerRightBox">
							bla<!-- &nbsp; -->
						</div>
					</div>

					<div id="menuBox">
						<h1>
							Main menu
						</h1>
						<div class="menuGroup">
							<a href="index.html" title="What's up today?"><img src="images/menu_icon.gif" alt="1" /> Today</a><span class="noDisplay"> | </span>
							<a href="index.html" title="Show me the calendar!"><img src="images/menu_icon.gif" alt="2" /> Calendar</a><span class="noDisplay"> | </span>
							<a href="index.html" title="Show me the events!"><img src="images/menu_icon.gif" alt="3" /> Events</a><span class="noDisplay"> | </span>
							<a href="index.html" title="I want users!"><img src="images/menu_icon.gif" alt="4" /> Users</a><span class="noDisplay"> | </span>
						</div>

						<h1>
							User menu
						</h1>
						<div class="menuGroup">
							<a href="index.html" title="eVenturize..."><img src="images/menu_icon.gif" alt="1" /> Login</a><span class="noDisplay"> | </span>
							<a href="index.html" title="Cuztomize!"><img src="images/menu_icon.gif" alt="2" /> Preferences</a><span class="noDisplay"> | </span>
						</div>

						<h1>
							Rss
						</h1>
						<div class="newsGroup">
							<h2>rss feed</h2>
							<p>
								a feed here?
							</p> 
						</div>

						<div class="menuFooter">
							bla<!-- &nbsp; -->
						</div>

					</div>

					<div id="mainContent">

						<xsl:for-each select="CONTENT/MODEL">
							<xsl:variable name="model">
								<xsl:value-of select="./TYPE" />
							</xsl:variable>
							<xsl:if test="$model='user'">
								<xsl:call-template name="user" />
							</xsl:if>							
							<xsl:value-of select="CONTENT/MODEL/TYPE" />
						</xsl:for-each> 

						<br />	

						<div class="footer">
							valid <a href="http://validator.w3.org/check/referer" title="validate markup">XHTML</a> / <a href="http://jigsaw.w3.org/css-validator/check/referer" title="validate CSS">CSS</a> <br />
							2006-04-06 / copyleft <a href="http://wilma.vub.ac.be/~se4_2006/" title="Software Engineering GROUP 4 - 2006">SE4</a> | design: <a href="http://www.oswd.org/userinfo.phtml?user=snop" title="OSWD profile / contact">snop</a>
						</div>
					</div>

					<div class="spacer">
					</div>

				</div>

			</body>
		</html>
	</xsl:template>
</xsl:stylesheet>
