/** all css of bccl ***/

@import url("css/bea_bootstrap.min.css");
@import url("css/bea_style_2025.min.css");
@import url("font-awesome/css/font-awesome.min.css");
@import url("fonts/fonts.googleapis.com.css");
@import url("css/jquery-ui.custom.min.css");
@import url("css/formValidator.css");
@import url("css/datepicker.min.css");
@import url("css/messages.css");
@import url("css/jscrollpane.min.css");
@import url("css/perfect-scrollbar.min.css");
@import url("css/bootstrap-datetimepicker.min.css");


<?php
/**
 * Layout of the system/application
 */
?>
<?php //echo $this->doctype(); ?>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <?php echo $this->headTitle('Export'. $this->translate('-Registrarion'))->setSeparator(' - ')->setAutoEscape(false) ?>
        <?php echo $this->headMeta()->appendName('viewport', 'width=device-width, initial-scale=1.0') ?>
        
        <!-- Le styles -->
         <?php echo $this->headLink(array('rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/img/favicon.png'))
        				->prependStylesheet($this->basePath() . '/css/ie/bea_style-ie2.min.css', 'screen', 'IE')
        				->prependStylesheet($this->basePath() . '/css/ie/bea_style-ie.min.css', 'screen', 'IE')
        				->prependStylesheet($this->basePath() . '/bea_css.css');
        ?> 
                  
       <!-- Scripts -->
        <?php echo $this->headScript()->prependFile($this->basePath() . '/js/respond.min.js', 'text/javascript', array('conditional' => 'IE'))
									->prependFile($this->basePath() . '/js/html5shiv.min.js', 'text/javascript', array('conditional' => 'IE'))
									->prependFile($this->basePath() . '/js/jquery.browser.js')
									->prependFile($this->basePath() . '/js/ch_genpdf.js')
									->prependFile($this->basePath() . '/js/ch_addrow.js')
									->prependFile($this->basePath() . '/js/jquery.mousewheel.js')
									->prependFile($this->basePath() . '/js/jquery.jscrollpane.custom.min.js')
									->prependFile($this->basePath() . '/js/daterangepicker.min.js')
									->prependFile($this->basePath() . '/js/bootstrap-datepicker.min.js')
									->prependFile($this->basePath() . '/js/jquery-ui.custom.min.js')
									->prependFile($this->basePath() . '/js/jquery.ui.touch-punch.min.js')
									->prependFile($this->basePath() . '/js/formValidator.bootstrap.js')
									->prependFile($this->basePath() . '/js/formValidator.min.js')
									->prependFile($this->basePath() . '/js/dataTables.colVis.min.js')
									->prependFile($this->basePath() . '/js/dataTables.tableTools.js')
									->prependFile($this->basePath() . '/js/jquery.dataTables.bootstrap.min.js')
									->prependFile($this->basePath() . '/js/jquery.dataTables.min.js')
									->prependFile($this->basePath() . '/js/bea-elements.min.js')
									->prependFile($this->basePath() . '/js/bea-inline.min.js')
									->prependFile($this->basePath() . '/js/jquery.slimscroll.min.js')
									->prependFile($this->basePath() . '/js/gauge.min.js')
									->prependFile($this->basePath() . '/js/bea.min.js')
                                    ->prependFile($this->basePath() . '/js/Chart.min.js')
									->prependFile($this->basePath() . '/js/echarts.min.js')								
									->prependFile($this->basePath() . '/js/bea-extra.min.js')
                                    ->prependFile($this->basePath() . '/js/bootstrap.min.js')
									->prependFile($this->basePath() . '/js/chosen.jquery.js')
									->prependFile($this->basePath() . '/js/jquery.mask.js')
                                    ->prependFile($this->basePath() . '/js/jquery.table2excel.js')
                                    ->prependFile($this->basePath() . '/js/jquery.sparkline.min.js')
                                    ->prependFile($this->basePath() . '/js/jquery.2.1.1.min.js','text/javascript', array('conditional' => '!IE'))
                                    ->prependFile($this->basePath() . '/js/jquery.1.11.1.min.js','text/javascript', array('conditional' => 'IE')); ?>  
		<script type="text/javascript">
			if('ontouchstart' in document.documentElement) document.write("<script src='assets/js/jquery.mobile.custom.min.js'>"+"<"+"/script>");
		</script>                             
     </head>
	 <?php
		$routeMatch = $this->getroute_helper();
		$routeName = $routeMatch->getMatchedRouteName();
		$routeAction = $routeMatch->getParam('action');
		$class = ($user = $this->Identity())?'no-skin':'no-skin'; ?>
	<body class="<?php echo ($routeAction == 'login')?'login-layout light-login patern-bg':$class;?>">
		<?php if ($user = $this->Identity()) {  ?>    
			<?php echo $this->partial('partial/navbar-top.phtml'); ?>
		<?php } ?> 
		<div class="main-container" id="main-container">
			<!-- sidebar menu  -->
			<?php if ($user = $this->Identity()) {  ?>    
				<?php echo $this->partial('partial/navbar-side.phtml'); ?>                
			<?php } ?>  	
			<div class="main-content">
				<div class="main-content-inner">
					<?php if ($user = $this->Identity()) {  ?>  
						<?php echo $this->partial('partial/breadcrumb.phtml'); ?>    	
						<div class="page-content">
					<?php }?>
						<div class="col-lg-12">
							<?php echo $this->content; ?>  
							<?php echo $this->flash_message();?>
						</div>
					<?php if ($user = $this->Identity()) {  ?>   
						</div>
					<?php }?>
				</div>
			</div>
			<div class="footer">
				<div class="footer-inner">
					<div class="footer-content">
						<span class="bigger-120">
							<span class="black bolder">BEA1, </span>
							<font style ="color:black;" >Solution &copy; 2025-<?php echo date('Y'); ?></font>
						</span>
					</div>
				</div>
			</div>
			<a href="#" id="btn-scroll-up" class="btn-scroll-up btn btn-sm btn-inverse">
				<i class="ace-icon fa fa-angle-double-up icon-only bigger-110"></i>
			</a>	
		</div>
	</body>
</html>			
