<?php echo $this->doctype(Zend_View_Helper_Doctype::HTML5); ?>
<html lang="pl">
	<head>
		<?php echo $this->headTitle(__('RTN CMS')) ?>
		<meta charset="utf-8">
		<meta name="robots" content="noindex, nofollow" />

		<?php echo $this->headLink() ?>

		<?php echo $this->headScript(); ?>

		<!--[if lte IE 8]>
		<script type="text/javascript" src="/public/modules/Core/admin/js/html5.js"></script>
		<![endif]-->

		<script>
			var params = <?php echo Zend_Json::encode($this->params); ?>;
		</script>
	</head>

	<body class="fluid">
		<div class="wrap">
			<header id="top">
				<div class="container_12 clearfix">
					<div id="logo" class="grid_5">
						<a id="site-title" href="<?php echo $this->url(array('module' => 'Core', 'controller' => 'admin_index'), 'default', false) ?>"><img src="<?php echo Core_Module_Module::getInstance()->getAdminImgPath() ?>logo.png" alt="" /></a>
					</div>

				</div>
			</header>

			<section id="content">
				<section class="container_12 clearfix">
					<?php echo $this->messenger() ?>
					<?php echo $this->layout()->content; ?>
				</section>
			</section>
		</div>

		<div class="footer_start">
			<footer id="bottom">
				<section class="container_12 clearfix">
					<div class="grid_6">
						Copyright <?php echo date('Y') ?> - <a href="http://eppearance.pl/">Eppearance Sp. z o.o.</a>
					</div>
				</section>
			</footer>
		</div>

	</body>
</html>