Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
12345 anikendra 1
<!DOCTYPE html>
2
<html lang="en">
3
	<head>
4
	    <meta charset="utf-8">
5
	    <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
6
	    <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
		<title><?php echo $title_for_layout; ?></title>
8
 
9
		<!--[if lt IE 9]>
10
      		<script src="http://html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
11
    	<![endif]-->
12
		<script type='text/javascript' src="http://code.jquery.com/jquery-1.11.0.min.js"></script>		
13
    	<?php
14
    		//Load Bootstrap:  
15
    		echo $this->Bootstrap->load(); 		
16
 
17
			echo $this->fetch('meta');
18
			echo $this->fetch('css');
19
			echo $this->fetch('script');
20
    	?>
21
 
22
	    <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> 
23
	    <!--[if lt IE 9]>
24
	    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
25
	    <![endif]--> 
26
	    <link href="<?php echo $base_url;?>css/style.css" rel="stylesheet"/>     
27
	    <?php echo $this->Html->css('twitter/bootstrap/docs');?>	    
28
	    <link rel="shortcut icon" href="<?php echo $base_url;?>favicon.ico" type="image/x-icon">
29
		<link rel="icon" href="<?php echo $base_url;?>favicon.ico" type="image/x-icon">
30
	</head>
31
	<body>
32
	   	<div id="wrap">
33
		    <div class="navbar navbar-fixed-top navbar-inverse">
34
		    	<?php echo $this->element('header');?>
35
		    </div>
36
 
37
		    <div class="container-fluid">
38
		        <div class="row-fluid">
39
		            <?php echo $this->element('leftbar');?>
40
 
41
		           	<div id="main-content" class="span9">
42
 
43
						<?php echo $this->Session->flash(); ?>
44
 
45
						<?php echo $this->fetch('content'); ?>
46
 
47
		            </div><!--/span-->
48
 
49
		        </div><!--/row-->
50
		    </div> <!-- /container -->
51
		    <div id="push"></div>
52
		</div>
53
	    <div id="footer">
54
			<div class="container">
55
			<?php echo $this->element('footer');?>
56
			<?php //echo $this->element('sql_dump'); ?>
57
			</div>
58
	    </div>
59
	</body>
60
</html>