mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-16 03:48:24 +00:00
4b9df4fda4
Author: phpnut Date: 4:44:45 AM, Wednesday, October 26, 2005 Message: AJAX is now available as a by default in the $html variable in the templates. You access it like this: $html->Ajax->xxx(); Updated default templates. [1208] Author: phpnut Date: 6:49:26 PM, Tuesday, October 25, 2005 Message: Adding fix in Controller::generateFieldNames(); [1203] Author: phpnut Date: 10:40:28 AM, Tuesday, October 25, 2005 Message: Changes made to core templates and css. Fixed added for Ticket #60 [1202] Author: phpnut Date: 2:30:58 AM, Tuesday, October 25, 2005 Message: Fix for cake error templates Fixed a key for tables that are underscored in scaffolded code. git-svn-id: https://svn.cakephp.org/repo/trunk/cake@1211 3807eeeb-6ff5-0310-8944-8be069107fe0
73 lines
2.8 KiB
Text
73 lines
2.8 KiB
Text
<!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>
|
|
<title>CakePHP : A Rapid Development Framework :: <?php echo $title_for_layout?></title>
|
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
|
<?php echo $html->charset('UTF-8')?>
|
|
<?php echo $html->css('cake.default')?>
|
|
<?php echo $html->css('cake.scaffold')?>
|
|
<?php echo $html->css('cake.forms')?>
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<div id="header">
|
|
<div id="headerLogo">
|
|
<a href="http://cakephp.org">
|
|
<?php echo $html->image('cake.logo.png', array('alt'=>"CakePHP : Rapid Development Framework")); ?>
|
|
</a>
|
|
</div>
|
|
<div id="headerNav">
|
|
<?php
|
|
echo $html->link('API', 'http://api.cakephp.org/');
|
|
|
|
echo $html->link('Wiki', 'http://wiki.cakephp.org');
|
|
|
|
echo $html->link('CakeForge', 'http://cakeforge.org');
|
|
|
|
echo $html->link('Trac', 'https://trac.cakephp.org');
|
|
|
|
?>
|
|
</div>
|
|
</div>
|
|
<div id="pageNav">
|
|
<?php
|
|
$css_class = ($title_for_layout == 'Home') ? 'active' : '';
|
|
echo $html->link('Home', 'http://cakephp.org/',array('class'=>$css_class));
|
|
echo ' ';
|
|
$css_class = ($title_for_layout == 'Blogs') ? 'active' : '';
|
|
echo $html->link('Blog', 'http://cakephp.org/blogs',array('class'=>$css_class));
|
|
echo ' ';
|
|
$css_class = ($title_for_layout == 'Downloads') ? 'active' : '';
|
|
echo $html->link('Downloads', 'http://cakephp.org/downloads/',array('class'=>$css_class));
|
|
echo ' ';
|
|
$css_class = ($title_for_layout == 'Support') ? 'active' : '';
|
|
echo $html->link('Support', 'http://cakephp.org/pages/support/',array('class'=>$css_class));
|
|
echo ' ';
|
|
$css_class = ($title_for_layout == 'Pastes') ? 'active' : '';
|
|
echo $html->link('CakeBin', 'http://cakephp.org/pastes/',array('class'=>$css_class));
|
|
?>
|
|
</div>
|
|
<div id="content">
|
|
<?php echo $content_for_layout?>
|
|
</div>
|
|
<div id="pb-cake">
|
|
© 2005 CakePHP ::
|
|
<a href="https://trac.cakephp.org/wiki/Authors">CakePHP Developers and Authors</a>
|
|
<p>CakePHP version 0.10.0.1211_alpha</p>
|
|
<a href="http://www.cakephp.org/" target="_new" class="simple">
|
|
<?php echo $html->image('cake.power.png', array('alt'=>"CakePHP : Rapid Development Framework", 'border'=>"0"))?>
|
|
</a>
|
|
<a href="http://www.cakephp.org/" target="_new" class="simple">
|
|
<?php echo $html->image('pbcake.gif', array('width'=>"120",'height'=>"28",'alt'=>"CakePHP : Rapid Development Framework", 'border'=>"0"))?>
|
|
</a>
|
|
</div>
|
|
<div id="footer">
|
|
<a href='http://www.silktide.com/index.php?node=18448&url=http%3A%2F%2Fwww.cakephp.org'>
|
|
<img src='http://sitescore.silktide.com/index.php?siteScoreUrl=http%3A%2F%2Fwww.cakephp.org' alt='Silktide SiteScore for this website' border='0'>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<!---PLEASE USE ONE OF THE POWERED BY CAKE LOGOS------->
|
|
|
|
</body>
|
|
</html>
|