<?php
$this->render( '_init.phtml' );
?>
<?= $this->doctype() ?>
 <!--[if lt IE 7]><html class="no-js ie6 oldie <?= $this->tplClass; ?>" lang="<?= $this->lang ?>"> <![endif]-->
 <!--[if IE 7]><html class="no-js ie7 oldie <?= $this->tplClass; ?>" lang="<?= $this->lang ?>"> <![endif]-->
 <!--[if IE 8]><html class="no-js ie8 oldie <?= $this->tplClass; ?>" lang="<?= $this->lang ?>"> <![endif]-->
 <!--[if IE 9]><html class="no-js ie9 <?= $this->tplClass; ?>" lang="<?= $this->lang ?>"> <![endif]-->
 <!--[if gt IE 9]><!--><html class="no-js <?= $this->tplClass; ?>" lang="<?= $this->lang ?>"><!--<![endif]-->
 <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>
</body>
<?= $this->render( '_foot.phtml' ); ?>
</html>