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