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