| 13532 |
anikendra |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
*
|
|
|
4 |
*
|
|
|
5 |
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
|
6 |
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
7 |
*
|
|
|
8 |
* Licensed under The MIT License
|
|
|
9 |
* For full copyright and license information, please see the LICENSE.txt
|
|
|
10 |
* Redistributions of files must retain the above copyright notice.
|
|
|
11 |
*
|
|
|
12 |
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
13 |
* @link http://cakephp.org CakePHP(tm) Project
|
|
|
14 |
* @package app.View.Layouts
|
|
|
15 |
* @since CakePHP(tm) v 0.10.0.1076
|
|
|
16 |
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
|
|
17 |
*/
|
|
|
18 |
|
|
|
19 |
$cakeDescription = __d('cake_dev', 'CakePHP: the rapid development php framework');
|
|
|
20 |
?>
|
|
|
21 |
<!DOCTYPE html>
|
|
|
22 |
<html>
|
|
|
23 |
<head>
|
|
|
24 |
<?php echo $this->Html->charset(); ?>
|
|
|
25 |
<title>
|
|
|
26 |
<?php echo $cakeDescription ?>:
|
|
|
27 |
<?php echo $title_for_layout; ?>
|
|
|
28 |
</title>
|
|
|
29 |
<?php
|
|
|
30 |
echo $this->Html->meta('icon');
|
|
|
31 |
|
|
|
32 |
echo $this->Html->css('cake.generic');
|
|
|
33 |
|
|
|
34 |
echo $this->fetch('meta');
|
|
|
35 |
echo $this->fetch('css');
|
|
|
36 |
echo $this->fetch('script');
|
|
|
37 |
?>
|
|
|
38 |
</head>
|
|
|
39 |
<body>
|
|
|
40 |
<div id="container">
|
|
|
41 |
<div id="header">
|
|
|
42 |
<h1><?php echo $this->Html->link($cakeDescription, 'http://cakephp.org'); ?></h1>
|
|
|
43 |
</div>
|
|
|
44 |
<div id="content">
|
|
|
45 |
|
|
|
46 |
<?php echo $this->Session->flash(); ?>
|
|
|
47 |
|
|
|
48 |
<?php echo $this->fetch('content'); ?>
|
|
|
49 |
</div>
|
|
|
50 |
<div id="footer">
|
|
|
51 |
<?php echo $this->Html->link(
|
|
|
52 |
$this->Html->image('cake.power.gif', array('alt' => $cakeDescription, 'border' => '0')),
|
|
|
53 |
'http://www.cakephp.org/',
|
|
|
54 |
array('target' => '_blank', 'escape' => false)
|
|
|
55 |
);
|
|
|
56 |
?>
|
|
|
57 |
</div>
|
|
|
58 |
</div>
|
|
|
59 |
<?php echo $this->element('sql_dump'); ?>
|
|
|
60 |
</body>
|
|
|
61 |
</html>
|