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
 
13
    	<?php
14
    		//Load Bootstrap:  
15
    		echo $this->Bootstrap->load(); 
16
			echo $this->fetch('meta');
17
			echo $this->fetch('css');
18
			echo $this->fetch('script');
19
    	?>
20
 
21
	    <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> 
22
	    <!--[if lt IE 9]>
23
	    <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
24
	    <![endif]--> 
25
	     <link href="<?php echo $base_url;?>css/style.css" rel="stylesheet"/> 
26
    	<script type="text/javascript" src="<?php echo $base_url;?>js/jquery-1.7.2.min.js"></script>
27
    	<link rel="shortcut icon" href="<?php echo $base_url;?>favicon.ico" type="image/x-icon">
28
		<link rel="icon" href="<?php echo $base_url;?>favicon.ico" type="image/x-icon">
29
	</head>
30
	<body>
31
		<div id="wrap">
32
		    <div class="navbar navbar-fixed-top navbar-inverse">
33
		    	<?php echo $this->element('header');?>
34
		    </div>
35
		    <div class="container-fluid">
36
		        <div class="row-fluid">	            
37
		           	<div id="main-content" class="span12">
38
					<?php echo $this->Session->flash(); ?>
39
					<?php echo $this->fetch('content'); ?>
40
		            </div><!--/span-->
41
		        </div><!--/row-->			
42
		    </div> <!-- /container -->
43
		    <div id="push"></div>
44
		</div>		
45
		<div id="footer">
46
			<div class="container">
47
			<?php echo $this->element('footer');?>
48
			<?php echo $this->element('sql_dump'); ?>
49
			</div>
50
	    </div>
51
	</body>
52
</html>