mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
42 lines
1.2 KiB
Text
42 lines
1.2 KiB
Text
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head>
|
||
|
<?php echo $this->Html->charset(); ?>
|
||
|
<title>
|
||
|
<?php __('Administration'); ?> -
|
||
|
<?php echo $title_for_layout; ?>
|
||
|
</title>
|
||
|
<?php
|
||
|
echo $this->Html->meta('icon');
|
||
|
//echo $this->Html->css('cake.generic');
|
||
|
echo $this->Html->css(array('reset', 'text', 'grid', 'layout', 'nav'));
|
||
|
echo '<!--[if IE 6]>'.$this->Html->css('ie6').'<![endif]-->';
|
||
|
echo '<!--[if IE 7]>'.$this->Html->css('ie').'<![endif]-->';
|
||
|
echo $this->Html->script(array('jquery-1.3.2.min.js', 'jquery-ui.js', 'jquery-fluid16.js'));
|
||
|
echo $scripts_for_layout;
|
||
|
?>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container_16">
|
||
|
<div class="grid_16">
|
||
|
<h1 id="branding">
|
||
|
<a href="/admin">Administration</a>
|
||
|
</h1>
|
||
|
</div>
|
||
|
<div class="clear"></div>
|
||
|
<div class="grid_16">
|
||
|
<?php echo $this->element('admin/main_menu'); ?>
|
||
|
</div>
|
||
|
|
||
|
<div class="clear" style="height: 10px; width: 100%;"></div>
|
||
|
|
||
|
<?php echo $this->Session->flash(); ?>
|
||
|
|
||
|
<?php echo $content_for_layout; ?>
|
||
|
|
||
|
<div class="clear"></div>
|
||
|
</div>
|
||
|
<?php echo $this->element('sql_dump'); ?>
|
||
|
</body>
|
||
|
</html>
|