Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13532 anikendra 1
<?php
2
/**
3
 *
4
 *
5
 * @link          http://cakephp.org CakePHP(tm) Project
6
 * @package       app.View.Layouts
7
 * @since         CakePHP(tm) v 0.10.0.1076
8
 */
9
 
10
$cakeDescription = __d('cake_dev', 'CakePHP: the rapid development php framework');
11
?>
12
<!DOCTYPE html>
13
<html>
14
<head>
15
	<?php echo $this->Html->charset(); ?>
16
	<title>
17
		<?php echo $cakeDescription ?>:
18
		<?php echo $title_for_layout; ?>
19
	</title>
20
	<?php
21
		echo $this->Html->meta('icon');
22
 
23
		echo $this->Html->css('cake.generic');
24
 
25
		echo $this->fetch('meta');
26
		echo $this->fetch('css');
27
		echo $this->fetch('script');
28
	?>
29
</head>
30
<body>
31
	<div id="container">
32
		<div id="header">
33
			<h1><?php echo $this->Html->link($cakeDescription, 'http://cakephp.org'); ?></h1>
34
		</div>
35
		<div id="content">
36
 
37
			<?php echo $this->Session->flash(); ?>
38
 
39
			<?php echo $this->fetch('content'); ?>
40
		</div>
41
		<div id="footer">
42
			<?php echo $this->Html->link(
43
					$this->Html->image('cake.power.gif', array('alt' => $cakeDescription, 'border' => '0')),
44
					'http://www.cakephp.org/',
45
					array('target' => '_blank', 'escape' => false)
46
				);
47
			?>
48
		</div>
49
	</div>
50
	<?php echo $this->element('sql_dump'); ?>
51
</body>
52
</html>