20 lines
608 B
Text
20 lines
608 B
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>LW Beta 6 <@version/> Administration - ${title?xhtml}</title>
|
||
|
<link rel="stylesheet" type="text/css" href="css/main.css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="page-header">
|
||
|
<h1>Legacy Worlds administration interface</h1>
|
||
|
<h3><@full_version /></h3>
|
||
|
<h2>${title?xhtml}</h2>
|
||
|
</div>
|
||
|
<div class="page-contents page-full">
|
||
|
<#nested>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|
||
|
</#macro>
|