Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
13532 anikendra 1
<?php
2
$cakeDescription = __d('cake_dev', 'LetUsHaggle');
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');
19
 
20
			echo $this->Html->css(array('bootstrap','style'));
21
			//echo $this->Html->script(array('jquery-1.10.2','bootstrap'));
22
			echo $this->fetch('meta');
23
			echo $this->fetch('css');
24
			echo $this->fetch('script');
25
 
26
		?>
27
	</head>
28
	<body>
29
		<?php //echo $this->element('header');?>
30
		<div class="container">
31
			<?php echo $this->Session->flash(); ?>
32
			<?php echo $this->fetch('content'); ?>
33
			<?php //echo $this->element('footer');?>			
34
		</div>
35
		<?php //echo $this->element('sql_dump'); ?>
36
	</body>
37
</html>