45 lines
1.0 KiB
HTML
45 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{title}</title>
|
|
|
|
<link rel="stylesheet" href="/assets/reset.css">
|
|
<link rel="stylesheet" href="/assets/dk.css">
|
|
|
|
<script>
|
|
function open_char_popup()
|
|
{
|
|
window.open("/showchar", "", "width=210,height=500,scrollbars")
|
|
}
|
|
|
|
function open_map_popup()
|
|
{
|
|
window.open("/showmap", "", "width=520,height=520,scrollbars")
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<header>
|
|
<div><img src="/assets/images/logo.gif" alt="Dragon Knight" title="Dragon Knight"></div>
|
|
<nav>{topnav}</nav>
|
|
</header>
|
|
|
|
<section id="game">
|
|
<aside id="left">{leftside}</aside>
|
|
<main>{content}</main>
|
|
<aside id="right">{rightside}</aside>
|
|
</section>
|
|
|
|
<footer>
|
|
<div>Powered by <a href="/">Dragon Knight</a></div>
|
|
<div>© 2025 Sharkk</div>
|
|
<div>{totaltime} Seconds, {numqueries} Queries</div>
|
|
<div>Version {version} {build}</div>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|