Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

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