Emmanuel BENOîT
d768766214
* Added the new interface style, including the necessary pictures and page layout template. * Updated existing style sheet in order to accommodate the new fluid layout and to use some more CSS3 goodness. * Upgraded JQuery from 1.4.2 to 1.7.1.
35 lines
No EOL
1.1 KiB
Text
35 lines
No EOL
1.1 KiB
Text
<#include "../game.ftl">
|
|
<#macro page title hidePlanets=false>
|
|
<?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.7.1.min.js"></script>
|
|
<script type="text/javascript" charset="utf-8" src="js/main.js"></script>
|
|
</head>
|
|
<body>
|
|
<!-- Header -->
|
|
<div id="hd-top">
|
|
<div id="hd-logo">
|
|
<a href="#" title="Legacy Worlds home page"><span>Legacy Worlds Beta 6 <@version/></span></a>
|
|
</div>
|
|
<div id="hd-bar">
|
|
<div id="hd-summary" />
|
|
<div id="hd-page">
|
|
<h1>${title?xhtml}</h1>
|
|
</div>
|
|
</div>
|
|
<div id="hd-text">current version: <@full_version/></div>
|
|
</div>
|
|
|
|
<div id="page-contents" class="chat-page"><#nested></div>
|
|
|
|
<div id="footer">
|
|
Copyright (C) 2004-2012,
|
|
<a title="DeepClone Development" href="http://www.deepclone.com">DeepClone Development</a>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
</#macro> |