2017-02-05 10:49:37 -06:00
|
|
|
<?php
|
2024-12-13 11:42:22 -06:00
|
|
|
$template = <<<HTML
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2017-02-05 10:49:37 -06:00
|
|
|
<head>
|
2024-12-13 11:42:22 -06:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>{{title}}</title>
|
|
|
|
<link rel="stylesheet" href="/css/dk.css">
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function opencharpopup(){
|
|
|
|
var popurl="/showchar"
|
|
|
|
winpops=window.open(popurl,"","width=210,height=500,scrollbars")
|
|
|
|
}
|
|
|
|
function openmappopup(){
|
|
|
|
var popurl="/showmap"
|
|
|
|
winpops=window.open(popurl,"","width=520,height=520,scrollbars")
|
|
|
|
}
|
|
|
|
</script>
|
2017-02-05 10:49:37 -06:00
|
|
|
</head>
|
2024-12-13 11:42:22 -06:00
|
|
|
<body>
|
|
|
|
<center>
|
|
|
|
<table cellspacing="0" width="90%">
|
|
|
|
<tr>
|
|
|
|
<td class="top" colspan="3">
|
|
|
|
<table width="100%"><tr><td><img src="/img/logo.gif" alt="{{dkgamename}}" title="{{dkgamename}}" border="0" /></td><td style="text-align:right; vertical-align:middle;">{{topnav}}</td></tr></table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="left">{{leftnav}}</td>
|
|
|
|
<td class="middle">{{content}}</td>
|
|
|
|
<td class="right">{{rightnav}}</td>
|
|
|
|
</tr>
|
|
|
|
</table> <br>
|
|
|
|
<table class="copyright" width="90%"><tr>
|
|
|
|
<td width="25%" align="center">Powered by <a href="http://dragon.se7enet.com/dev.php" target="_new">Dragon Knight</a></td><td width="25%" align="center">© 2024 Sharkk</td><td width="25%" align="center">{{totaltime}} Seconds, {{numqueries}} Queries</td><td width="25%" align="center">Version {{version}} {{build}}</td>
|
|
|
|
</tr></table>
|
|
|
|
</center>
|
|
|
|
</body>
|
2017-02-05 10:49:37 -06:00
|
|
|
</html>
|
2024-12-13 11:42:22 -06:00
|
|
|
HTML;
|