44 lines
1.8 KiB
Text
44 lines
1.8 KiB
Text
|
<#macro page title>
|
||
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||
|
<head>
|
||
|
<title>Legacy Worlds Beta 6 <@version/> - ${title?xhtml}</title>
|
||
|
<link rel="stylesheet" type="text/css" href="css/main.css" />
|
||
|
<script type="text/javascript" charset="utf-8" src="js/jquery-1.4.2.min.js"></script>
|
||
|
<script type="text/javascript" charset="utf-8" src="js/main.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="extframe">
|
||
|
<div class="internal" id="intframe">
|
||
|
<!-- Header -->
|
||
|
<a id="hbutton" href="home" title="Legacy Worlds home page"><span>Legacy Worlds Beta 6 <@version/></span></a>
|
||
|
<div id="version">current version: <@full_version/></div>
|
||
|
<div class="top-centered" id="tc-title">${title?xhtml}</div>
|
||
|
|
||
|
<!-- Log-in box -->
|
||
|
<div id="lbox">
|
||
|
<form method="post" action="login.action">
|
||
|
<div>
|
||
|
E-mail address: <input type="text" name="mail" value="" size="15" maxlength="128" class='input' /><br/>
|
||
|
Password: <input type="password" name="password" value='' size="15" maxlength="128" class='input' /><br/>
|
||
|
<a title="Recover password" href="password-recovery">Forgot your password?</a>
|
||
|
<input type="submit" value='Log in' class='input' />
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
|
||
|
<!-- Menu -->
|
||
|
<a class="mbutton" id="b0" href="scope" title="Scope of this milestone">Scope</a>
|
||
|
<a class="mbutton" id="b1" href="rules" title="Game rules">Rules</a>
|
||
|
<a class="mbutton" id="b2" href="register" title="Register">Register</a>
|
||
|
|
||
|
<div class="cframe"><#nested></div>
|
||
|
</div>
|
||
|
<div class="internal" id="footer">
|
||
|
Copyright (C) 2004-2010, <a title="DeepClone Development" href="http://www.deepclone.com">DeepClone Development</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|
||
|
</#macro>
|