Created
September 25, 2012 10:14
-
-
Save jeffwinesett/3781042 to your computer and use it in GitHub Desktop.
Yii Web Dev Book, Chapter 10, section: Deconstructing the main.php layout file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta name="language" content="en" /> | |
<!-- blueprint CSS framework --> | |
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/screen.css" media="screen, projection" /> | |
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/print.css" media="print" /> | |
<!--[if lt IE 8]> | |
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/ie.css" media="screen, projection" /> | |
<![endif]--> | |
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/main.css" /> | |
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/form.css" /> | |
<title><?php echo CHtml::encode($this->pageTitle); ?></title> | |
</head> | |
<body> | |
<div class="container" id="page"> | |
<div id="header"> | |
<div id="logo"><?php echo CHtml::encode(Yii::app()->name); ?></div> | |
</div><!-- header --> | |
<div id="mainmenu"> | |
<?php $this->widget('zii.widgets.CMenu',array( | |
'items'=>array( | |
array('label'=>'Home', 'url'=>array('/site/index')), | |
array('label'=>'About', 'url'=>array('/site/page', 'view'=>'about')), | |
array('label'=>'Contact', 'url'=>array('/site/contact')), | |
array('label'=>'Login', 'url'=>array('/site/login'), 'visible'=>Yii::app()->user->isGuest), | |
array('label'=>'Logout ('.Yii::app()->user->name.')', 'url'=>array('/site/logout'), 'visible'=>!Yii::app()->user->isGuest) | |
), | |
)); ?> | |
</div><!-- mainmenu --> | |
<?php if(isset($this->breadcrumbs)):?> | |
<?php $this->widget('zii.widgets.CBreadcrumbs', array( | |
'links'=>$this->breadcrumbs, | |
)); ?><!-- breadcrumbs --> | |
<?php endif?> | |
<?php echo $content; ?> | |
<div class="clear"></div> | |
<div id="footer"> | |
Copyright © <?php echo date('Y'); ?> by TrackStar.<br/> | |
All Rights Reserved.<br/> | |
<?php echo Yii::powered(); ?> | |
</div><!-- footer --> | |
</div><!-- page --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment