blob: cbb4b0b6f6b378db1e7f79d1e0a945b516b06004 [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="user"/>
<xsl:template match="/">
<html>
<head>
<link type="text/css" rel="stylesheet" href="css/page.css"/>
</head>
<body>
<table bgColor="#ffffff" border="0" cellPadding="0" cellSpacing="0" width="100%"><tbody>
<!-- header row -->
<tr>
<td colspan="2">
<table border="0" cellPadding="0" cellSpacing="0" width="100%">
<tbody>
<tr>
<td colspan="2" noWrap="" height="1%" bgcolor="#294563">
<img height="5" src="images/space.gif" width="100%"/>
</td>
</tr>
<tr>
<td colspan="2" bgcolor="#294563" height="98%" align="center" valign="middle" width="100%">
<img src="images/portal-logo.gif" width="250" height="90" />
</td>
</tr>
<tr valign="bottom">
<td height="99%" bgcolor="#294563" width="99%" align="right">
<xsl:if test="$user!='anonymous'">
<a href="logout"><img src="images/logout-door.gif" width="18" height="22" border="0"/></a>
</xsl:if>
<img height="5" src="images/space.gif" width="5"/>
</td>
<td height="99%" bgcolor="#294563" width="1%" align="right">
<xsl:if test="$user!='anonymous'">
<a href="logout" style="color:#CFDCED;font-size:75%;">Logout</a>&#160;
</xsl:if>
<img height="5" src="images/space.gif" width="5"/>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end header row -->
<!-- content/tab row -->
<tr>
<td>
<xsl:apply-templates/>
</td>
</tr>
<!-- end content/tab row -->
<!-- footer row -->
<tr>
<td colspan="2">
<table border="0" cellPadding="0" cellSpacing="0" width="100%">
<tbody>
<tr>
<td colspan="2" noWrap="" height="10" bgcolor="#CFDCED">
<img height="1" src="images/space.gif" width="1"/>
</td>
</tr>
<tr>
<td colspan="2" noWrap="" height="30" bgcolor="#294563">
<img height="1" src="images/space.gif" width="1"/>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<!-- end of footer row -->
</tbody>
</table>
</body>
</html>
</xsl:template>
<!-- Copy all and apply templates -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>