 <?php
 $this->render( '_init.phtml' );
 $layout = $this->layout()->getLayout();
 $this->tplClass = $layout;

 ?>
 <?= $this->doctype(); ?>
 <?= $this->render('_head.phtml'); ?>
 <body>
 	<div id="wrapper">
 	 		<?= $this->render('_sideNav.phtml') ?>

 		<header class="main">
 			<?= $this->render('_navBar.phtml') ?>


 		</header>
		<div class="container bread">
			<?= $this->navigation()->breadcrumbs()->setRenderInvisible(true)->setSeparator(' &gt; ')->setPartial('_breadcrumbs.phtml'); ?>
		</div>
 		<div id="content-wrapper">
 			<div class="container">
 				<div class="row">
 					<section id="contentCol"  class="contentCol col-xs-12">
 						<div class="content">
 							<?php
 							echo $this->messenger().PHP_EOL;
 							echo $this->layout()->content;
 							?>
 						</div>
 					</section>
 				</div>
 			</div>
 		</div>

 	</div>
 	<?= $this->render('_footer.phtml') ?>
 </body>
 <?= $this->render( '_foot.phtml' ); ?>
 </html>