1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<?php require_once('topnav.php'); ?>
<html>
<head>
<title>Edit: <?echo $page->prop->getGlobal('sitename') ?></title>
<link rel="stylesheet" title="default" href="<?=$root?>/?a=style&d=editor" type="text/css" />
</head>
<body>
<div id=logo></div>
<table id=container cellpadding=0 cellspacing=0 border=0>
<tr>
<td valign=bottom>
<span class=tabs>
<table cellspacing=4><tr>
<td class=here><a href="#">Files</a></td>
<td><a href="#">Options</a></td>
</tr></table>
</span>
</td>
<td></td>
<td valign=bottom width="100%">
<span class=tabs><?php include('tabs.php') ?></span>
</td>
</tr>
<tr>
<td id=leftcolumn valign=top>
<div id=navtree>
<?php include("leftnav.php"); ?>
</div> <!-- end navtree -->
</td>
<td valign=bottom><div id=spacecolumn></div></td>
<td id=rightcolumn valign=top width="100%">
<div id=content>
<?= $errors != '' ? "<div id=errors>$errors</div>" : '';?>
<?= $content ?>
</div>
</td>
</tr>
</table>
<?php
$debug = d::overlay();
if ($debug) {
echo "<div class=debug>$debug</div>";
}
?>
<div id="lang">
<?php include('lang.php'); ?>
</div>
</body>
</html>
|