1 | <?php |
---|
2 | /** |
---|
3 | * |
---|
4 | * PHP versions 4 and 5 |
---|
5 | * |
---|
6 | * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) |
---|
7 | * Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org) |
---|
8 | * |
---|
9 | * Licensed under The MIT License |
---|
10 | * Redistributions of files must retain the above copyright notice. |
---|
11 | * |
---|
12 | * @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org) |
---|
13 | * @link http://cakephp.org CakePHP(tm) Project |
---|
14 | * @package cake |
---|
15 | * @subpackage cake.cake.libs.view.templates.layouts |
---|
16 | * @since CakePHP(tm) v 0.10.0.1076 |
---|
17 | * @license MIT License (http://www.opensource.org/licenses/mit-license.php) |
---|
18 | */ |
---|
19 | ?> |
---|
20 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
21 | <html xmlns="http://www.w3.org/1999/xhtml"> |
---|
22 | <head> |
---|
23 | <?php echo $this->Html->charset(); ?> |
---|
24 | <title> |
---|
25 | <?php __('CakePHP: the rapid development php framework:'); ?> |
---|
26 | <?php echo $title_for_layout; ?> |
---|
27 | </title> |
---|
28 | <?php |
---|
29 | echo $this->Html->meta('icon'); |
---|
30 | |
---|
31 | echo $this->Html->css('cake.generic'); |
---|
32 | |
---|
33 | echo $scripts_for_layout; |
---|
34 | ?> |
---|
35 | </head> |
---|
36 | <body> |
---|
37 | <div id="container"> |
---|
38 | <div id="header"> |
---|
39 | <h1><?php echo $this->Html->link(__('CakePHP: the rapid development php framework', true), 'http://cakephp.org'); ?></h1> |
---|
40 | </div> |
---|
41 | <div id="content"> |
---|
42 | |
---|
43 | <?php echo $this->Session->flash(); ?> |
---|
44 | |
---|
45 | <?php echo $content_for_layout; ?> |
---|
46 | |
---|
47 | </div> |
---|
48 | <div id="footer"> |
---|
49 | <?php echo $this->Html->link( |
---|
50 | $this->Html->image('cake.power.gif', array('alt'=> __('CakePHP: the rapid development php framework', true), 'border' => '0')), |
---|
51 | 'http://www.cakephp.org/', |
---|
52 | array('target' => '_blank', 'escape' => false) |
---|
53 | ); |
---|
54 | ?> |
---|
55 | </div> |
---|
56 | </div> |
---|
57 | <?php echo $this->element('sql_dump'); ?> |
---|
58 | </body> |
---|
59 | </html> |
---|