| 10 |
<xsl:include href="templates.xsl"/> |
<xsl:include href="templates.xsl"/> |
| 11 |
<xsl:include href="user.xsl" /> |
<xsl:include href="user.xsl" /> |
| 12 |
<xsl:include href="form.xsl" /> |
<xsl:include href="form.xsl" /> |
| 13 |
|
<xsl:include href="exception.xsl" /> |
| 14 |
|
<xsl:include href="subscribe.xsl" /> |
| 15 |
|
<xsl:include href="login.xsl" /> |
| 16 |
|
|
| 17 |
<xsl:template match="PAGE"> |
<xsl:template match="PAGE"> |
| 18 |
<xsl:variable name="edit"> |
<xsl:variable name="edit"> |
| 19 |
<xsl:value-of select="EDIT" /> |
<xsl:value-of select="EDIT" /> |
| 20 |
</xsl:variable> |
</xsl:variable> |
| 21 |
|
<xsl:variable name="loggedin"> |
| 22 |
|
<xsl:value-of select="LOGGEDIN" /> |
| 23 |
|
</xsl:variable> |
| 24 |
|
|
| 25 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-AU"> |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-AU"> |
| 26 |
<head> |
<head> |
| 67 |
<h1> |
<h1> |
| 68 |
User menu |
User menu |
| 69 |
</h1> |
</h1> |
| 70 |
<div class="menuGroup"> |
<div style="padding: 0 0 0 20px"> |
| 71 |
<a href="index.html" title="eVenturize..."><img src="images/menu_icon.gif" alt="1" /> Login</a><span class="noDisplay"> | </span> |
|
| 72 |
<a href="index.html" title="Cuztomize!"><img src="images/menu_icon.gif" alt="2" /> Preferences</a><span class="noDisplay"> | </span> |
<xsl:if test="$loggedin='no'"> |
| 73 |
|
<xsl:call-template name="login" /> |
| 74 |
|
</xsl:if> |
| 75 |
|
|
| 76 |
|
|
| 77 |
</div> |
</div> |
| 78 |
|
|
| 79 |
<h1> |
<h1> |
| 108 |
<xsl:if test="$model='form'"> |
<xsl:if test="$model='form'"> |
| 109 |
<xsl:call-template name="form" /> |
<xsl:call-template name="form" /> |
| 110 |
</xsl:if> |
</xsl:if> |
| 111 |
|
<xsl:if test="$model='exception'"> |
| 112 |
|
<xsl:call-template name="exception" /> |
| 113 |
|
</xsl:if> |
| 114 |
<xsl:value-of select="CONTENT/MODEL/TYPE" /> |
<xsl:value-of select="CONTENT/MODEL/TYPE" /> |
| 115 |
</xsl:for-each> |
</xsl:for-each> |
| 116 |
|
|