Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13532 anikendra 1
<?php
2
 
3
$this->loadHelper('Html');
4
 
5
$cakeDescription = __d('cake_dev', 'CakePHP: the rapid development php framework');
6
?>
7
<!DOCTYPE html>
8
<html xmlns="http://www.w3.org/1999/xhtml">
9
<head>
10
	<?php echo $this->Html->charset(); ?>
11
	<title>
12
		<?php echo $cakeDescription ?>:
13
		<?php echo $title_for_layout; ?>
14
	</title>
15
	<?php
16
		echo $this->Html->meta('icon');
17
 
18
		echo $this->Html->css('cake.generic');
19
 
20
		echo $scripts_for_layout;
21
	?>
22
</head>
23
<body>
24
	<div id="container">
25
		<div id="header">
26
			<h1><?php echo $this->Html->link($cakeDescription, 'http://cakephp.org'); ?></h1>
27
		</div>
28
		<div id="content">
29
 
30
			<?php echo $this->fetch('content'); ?>
31
 
32
		</div>
33
		<div id="footer">
34
			<?php echo $this->Html->link(
35
					$this->Html->image('cake.power.gif', array('alt' => $cakeDescription, 'border' => '0')),
36
					'http://www.cakephp.org/',
37
					array('target' => '_blank', 'escape' => false)
38
				);
39
			?>
40
		</div>
41
	</div>
42
</body>
43
</html>