Subversion Repositories SmartDukaan

Rev

Rev 14098 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
13532 anikendra 1
<?php
13591 anikendra 2
$cakeDescription = __d('cake_dev', 'ProfitTill');
13532 anikendra 3
?>
4
<!DOCTYPE html>
5
<html lang="en">
6
	<head>
7
	  	<?php echo $this->Html->charset(); ?>
8
	    <meta charset="utf-8">
9
	    <meta name="viewport" content="width=device-width, initial-scale=1.0">
10
	    <meta name="author" content="">	
11
		<meta property="fb:admins" content="100000963081268"/>
12
	    <title>
13
	    	<?php echo $cakeDescription ?>:
14
			<?php echo $title_for_layout; ?>
15
		</title>
16
 
17
		<?php
18
			echo $this->Html->meta('icon');
13745 anikendra 19
			echo $this->Html->css(array('bootstrap','admin'));
13532 anikendra 20
			//echo $this->Html->script(array('jquery-1.10.2','bootstrap'));
21
			echo $this->fetch('meta');
22
			echo $this->fetch('css');
23
			echo $this->fetch('script');
24
		?>
14098 anikendra 25
		<?php if(($this->params->controller == 'skuschemes' && $this->params->action == 'admin_add' )):?>
13646 anikendra 26
			<script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
27
		<?php else:?>
28
			<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
29
		<?php endif;?>
14098 anikendra 30
		<script type="text/javascript">
31
			var base_url = '<?php echo FULL_BASE_URL . Router::url('/');?>';
32
			var controller = '<?php echo $this->params->params['controller'];?>';
33
		</script>
14139 anikendra 34
		<script type="text/javascript" src="/js/admin.js?v=<?php echo $staticversion;?>"></script>
14098 anikendra 35
		<script type="text/javascript" src="/js/jquery.jeditable.mini.js"></script>
13532 anikendra 36
	</head>
13745 anikendra 37
	<body class="adminpanel">
13532 anikendra 38
		<?php echo $this->element('adminheader');?>
39
		<div class="container">
40
			<?php echo $this->Session->flash(); ?>
41
			<?php echo $this->fetch('content'); ?>
42
			<?php //echo $this->element('footer');?>			
43
		</div>
14098 anikendra 44
		<?php echo $this->element('sql_dump'); ?>
13532 anikendra 45
	</body>
46
</html>