2017-02-05 10:49:37 -06:00
|
|
|
<?php
|
|
|
|
$template = <<<THEVERYENDOFYOU
|
|
|
|
<head>
|
|
|
|
<title>{{title}}</title>
|
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
color: black;
|
|
|
|
font: 11px verdana;
|
|
|
|
}
|
|
|
|
table {
|
|
|
|
border-style: none;
|
|
|
|
padding: 0px;
|
|
|
|
font: 11px verdana;
|
|
|
|
}
|
|
|
|
td {
|
|
|
|
border-style: none;
|
|
|
|
padding: 3px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
color: #663300;
|
|
|
|
text-decoration: none;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
color: #330000;
|
|
|
|
}
|
|
|
|
.small {
|
|
|
|
font: 10px verdana;
|
|
|
|
}
|
|
|
|
.highlight {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
.light {
|
|
|
|
color: #999999;
|
|
|
|
}
|
|
|
|
.title {
|
|
|
|
border: solid 1px black;
|
|
|
|
background-color: #eeeeee;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 5px;
|
|
|
|
margin: 3px;
|
|
|
|
}
|
|
|
|
.copyright {
|
|
|
|
border: solid 1px black;
|
|
|
|
background-color: #eeeeee;
|
|
|
|
font: 10px verdana;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body><center>
|
|
|
|
<table width="90%"><tr>
|
|
|
|
<td width="150" style="border-right: solid 1px black;">
|
2024-12-12 11:28:19 -06:00
|
|
|
<b><u>DK Administration</u></b><br><br>
|
|
|
|
<b>Links:</b><br>
|
|
|
|
<a href="admin.php">Admin Home</a><br>
|
|
|
|
<a href="index.php">Game Home</a><br><br>
|
|
|
|
<b>Primary Data:</b><br>
|
|
|
|
<a href="admin.php?do=main">Main Settings</a><br>
|
|
|
|
<a href="admin.php?do=news">Add News Post</a><br>
|
|
|
|
<a href="admin.php?do=users">Edit Users</a><br><br>
|
|
|
|
<b>Game Data:</b><br>
|
|
|
|
<a href="admin.php?do=items">Edit Items</a><br>
|
|
|
|
<a href="admin.php?do=drops">Edit Drops</a><br>
|
|
|
|
<a href="admin.php?do=towns">Edit Towns</a><br>
|
|
|
|
<a href="admin.php?do=monsters">Edit Monsters</a><br>
|
|
|
|
<a href="admin.php?do=levels">Edit Levels</a><br>
|
|
|
|
<a href="admin.php?do=spells">Edit Spells</a><br>
|
2017-02-05 10:49:37 -06:00
|
|
|
</td><td>
|
|
|
|
{{content}}
|
|
|
|
</td></tr></table>
|
2024-12-12 11:28:19 -06:00
|
|
|
<br>
|
2017-02-05 10:49:37 -06:00
|
|
|
<table class="copyright" width="90%"><tr>
|
2017-02-05 11:12:22 -06:00
|
|
|
<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">© 2003-2006 by renderse7en</td><td width="25%" align="center">{{totaltime}} Seconds, {{numqueries}} Queries</td><td width="25%" align="center">Version {{version}} {{build}}</td>
|
2017-02-05 10:49:37 -06:00
|
|
|
</center></body>
|
|
|
|
</html>
|
|
|
|
THEVERYENDOFYOU;
|
2024-12-12 11:28:19 -06:00
|
|
|
?>
|