default.thtml

来自「j2me is based on j2mepolish, client & se」· THTML 代码 · 共 57 行

THTML
57
字号
<?php/* SVN FILE: $Id: default.thtml 3972 2006-11-25 23:05:36Z phpnut $ *//** * * PHP versions 4 and 5 * * CakePHP :  Rapid Development Framework <http://www.cakephp.org/> * Copyright (c)	2006, Cake Software Foundation, Inc. *								1785 E. Sahara Avenue, Suite 490-204 *								Las Vegas, Nevada 89104 * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice. * * @filesource * @copyright		Copyright (c) 2006, Cake Software Foundation, Inc. * @link				http://www.cakefoundation.org/projects/info/cakephp CakePHP Project * @package			cake * @subpackage		cake.cake.libs.view.templates.pages * @since			CakePHP v 0.10.0.1076 * @version			$Revision: 3972 $ * @modifiedby		$LastChangedBy: phpnut $ * @lastmodified	$Date: 2006-11-25 17:05:36 -0600 (Sat, 25 Nov 2006) $ * @license			http://www.opensource.org/licenses/mit-license.php The MIT License */?><!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 : <?php echo $title_for_layout;?></title><link rel="icon" href="<?php echo $this->webroot . 'favicon.ico';?>" type="image/x-icon" /><link rel="shortcut icon" href="<?php echo $this->webroot . 'favicon.ico';?>" type="image/x-icon" /><?php echo $html->css('cake.generic');?></head><body>	<div id="container">		<div id="header">			<h1>CakePHP Rapid Development</h1>		</div>		<div id="content">			<?php if ($session->check('Message.flash'))					{						$session->flash();					}					echo $content_for_layout;			?>		</div>		<div id="footer">			&nbsp;			<a href="http://www.cakephp.org/" target="_new">				<?php echo $html->image('cake.power.png', array('alt'=>"CakePHP : Rapid Development Framework", 'border'=>"0"));?>			</a>		</div>	</div>	<?php echo $cakeDebug?></body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?