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>
|
2024-12-13 22:14:44 -06:00
|
|
|
function opencharpopup(id = 0)
|
|
|
|
{
|
|
|
|
const url = id == 0 ? '/character' : '/character/' + id
|
|
|
|
window.open(url, "", "width=210,height=500,scrollbars")
|
2024-12-13 11:42:22 -06:00
|
|
|
}
|
2024-12-13 22:14:44 -06:00
|
|
|
|
|
|
|
function openmappopup()
|
|
|
|
{
|
|
|
|
window.open("/showmap", "", "width=520,height=520,scrollbars")
|
2024-12-13 11:42:22 -06:00
|
|
|
}
|
|
|
|
</script>
|
2017-02-05 10:49:37 -06:00
|
|
|
</head>
|
2024-12-13 11:42:22 -06:00
|
|
|
<body>
|
2024-12-13 12:04:19 -06:00
|
|
|
<div id="game-container">
|
|
|
|
<header>
|
|
|
|
<img id="logo" src="/img/logo.gif" alt="{{dkgamename}}" title="{{dkgamename}}">
|
|
|
|
<nav>{{topnav}}</nav>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<main>
|
|
|
|
<section id="left">{{leftnav}}</section>
|
|
|
|
<section id="middle">{{content}}</section>
|
|
|
|
<section id="right">{{rightnav}}</section>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<footer>
|
|
|
|
<div>Powered by <a href="http://dragon.se7enet.com/dev.php" target="_new">Dragon Knight</a></div>
|
|
|
|
<div>© 2024 Sharkk</div>
|
|
|
|
<div>{{totaltime}} Seconds, {{numqueries}} Queries</div>
|
|
|
|
<div>Version {{version}} {{build}}</div>
|
|
|
|
</footer>
|
2024-12-13 16:52:03 -06:00
|
|
|
|
|
|
|
{{querylog}}
|
2024-12-13 12:04:19 -06:00
|
|
|
</div>
|
2024-12-13 11:42:22 -06:00
|
|
|
</body>
|
2017-02-05 10:49:37 -06:00
|
|
|
</html>
|
2024-12-13 11:42:22 -06:00
|
|
|
HTML;
|