<?php
$this->render( 'admin/_init.phtml' );

$container = $this->navigation()->getContainer();
$container->removePage( $container->findOneBy( 'id', 'home' ) );
$active = $this->navigation()->findActive( $container );
$active = array_key_exists( 'page', $active ) ? $active['page'] : null;

$identity = Zend_Auth::getInstance()->getIdentity();

echo $this->doctype() . PHP_EOL; ?>
<html lang="<?php echo $this->locale(); ?>">
    <head>
    <?php
echo $this->headTitle() . PHP_EOL
   . $this->headMeta() . PHP_EOL
   . $this->headLink() . PHP_EOL
   . $this->headStyle() . PHP_EOL
   . $this->headScript();

 ?>
    </head>
    <body>
    <div class="container">
        <?php echo $this->layout()->content; ?>
        
    </div>
        
                    
        <?php echo $this->inlineScript(); ?>

    </body>
</html>