2005-12-23 21:57:26 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2007-02-02 10:39:45 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
2008-01-01 22:18:17 +00:00
|
|
|
* Copyright 2005-2008, Cake Software Foundation, Inc.
|
2006-05-26 05:29:17 +00:00
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
2005-12-23 21:57:26 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @filesource
|
2008-01-01 22:18:17 +00:00
|
|
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc.
|
2007-02-02 10:39:45 +00:00
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
2006-05-26 05:29:17 +00:00
|
|
|
* @package cake
|
2007-10-18 19:55:20 +00:00
|
|
|
* @subpackage cake.cake.libs.view.templates.layouts
|
2007-02-02 10:39:45 +00:00
|
|
|
* @since CakePHP(tm) v 0.10.0.1076
|
2006-05-26 05:29:17 +00:00
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2005-12-23 21:57:26 +00:00
|
|
|
*/
|
|
|
|
?>
|
2005-10-03 04:48:00 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
2007-01-10 22:53:52 +00:00
|
|
|
<title>
|
2007-10-08 20:13:20 +00:00
|
|
|
<?php __('CakePHP: the rapid development php framework:'); ?>
|
2007-12-03 01:47:17 +00:00
|
|
|
<?php echo $title_for_layout; ?>
|
2007-01-10 22:53:52 +00:00
|
|
|
</title>
|
2007-12-29 19:05:22 +00:00
|
|
|
<?php
|
|
|
|
echo $html->charset();
|
|
|
|
echo $html->meta('icon');
|
2007-03-28 22:57:07 +00:00
|
|
|
|
2007-12-29 19:05:22 +00:00
|
|
|
echo $html->css('cake.generic');
|
2006-12-22 21:33:23 +00:00
|
|
|
|
2007-12-29 19:05:22 +00:00
|
|
|
echo $scripts_for_layout;
|
|
|
|
?>
|
2005-10-03 04:48:00 +00:00
|
|
|
</head>
|
2006-06-22 20:42:53 +00:00
|
|
|
<body>
|
|
|
|
<div id="container">
|
2006-05-26 05:29:17 +00:00
|
|
|
<div id="header">
|
2007-12-03 01:47:17 +00:00
|
|
|
<h1><?php echo $html->link(__('CakePHP: the rapid development php framework', true), 'http://cakephp.org'); ?></h1>
|
2006-06-22 20:42:53 +00:00
|
|
|
</div>
|
2006-05-26 05:29:17 +00:00
|
|
|
<div id="content">
|
2007-01-10 22:53:52 +00:00
|
|
|
<?php
|
2007-06-20 06:15:35 +00:00
|
|
|
if ($session->check('Message.flash')):
|
2006-09-10 14:33:20 +00:00
|
|
|
$session->flash();
|
2007-01-10 22:53:52 +00:00
|
|
|
endif;
|
2006-06-22 20:42:53 +00:00
|
|
|
?>
|
2007-01-10 22:53:52 +00:00
|
|
|
|
2007-12-03 01:47:17 +00:00
|
|
|
<?php echo $content_for_layout; ?>
|
2007-01-10 22:53:52 +00:00
|
|
|
|
2006-06-22 20:42:53 +00:00
|
|
|
</div>
|
2006-05-26 05:29:17 +00:00
|
|
|
<div id="footer">
|
2007-01-10 22:53:52 +00:00
|
|
|
<?php echo $html->link(
|
2007-10-21 23:50:09 +00:00
|
|
|
$html->image('cake.power.gif', array('alt'=> __("CakePHP: the rapid development php framework", true), 'border'=>"0")),
|
2007-01-10 22:53:52 +00:00
|
|
|
'http://www.cakephp.org/',
|
|
|
|
array('target'=>'_new'), null, false
|
|
|
|
);
|
|
|
|
?>
|
2006-06-22 20:42:53 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2007-12-03 01:47:17 +00:00
|
|
|
<?php echo $cakeDebug; ?>
|
2005-10-03 04:48:00 +00:00
|
|
|
</body>
|
2007-10-08 20:13:20 +00:00
|
|
|
</html>
|