Advertisement
Guest User

zii

a guest
Apr 26th, 2012
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru" lang="ru">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <meta name="language" content="ru" />
  6. <!-- blueprint CSS framework -->
  7. <link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/screen.css" media="screen, projection" />
  8. <link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/print.css" media="print" />
  9. <!--[if lt IE 8]>
  10. <link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/ie.css" media="screen, projection" />
  11. <![endif]-->
  12.  
  13. <link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/main.css" />
  14. <link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->request->baseUrl; ?>/css/form.css" />
  15.  
  16. <title><?php echo CHtml::encode($this->pageTitle); ?></title>
  17. </head>
  18.  
  19. <body>
  20.  
  21. <div class="container" id="page">
  22.  
  23. <div id="header">
  24. <div id="logo"><?php echo CHtml::encode(Yii::app()->name); ?></div>
  25. </div><!-- header -->
  26.  
  27. <div id="mainmenu">
  28. <?php $this->widget('zii.widgets.CMenu',array(
  29. 'items'=>array(
  30. array('label'=>'Home', 'url'=>array('post/index')),
  31. array('label'=>'About', 'url'=>array('site/page', 'view'=>'about')),
  32. array('label'=>'Contact', 'url'=>array('site/contact')),
  33. array('label'=>'Login', 'url'=>array('site/login'), 'visible'=>Yii::app()->user->isGuest),
  34. array('label'=>'Logout ('.Yii::app()->user->name.')', 'url'=>array('site/logout'), 'visible'=>!Yii::app()->user->isGuest)
  35. ),
  36. )); ?>
  37. </div><!-- mainmenu -->
  38.  
  39. <?php $this->widget('zii.widgets.CBreadcrumbs', array(
  40. 'links'=>$this->breadcrumbs,
  41. )); ?><!-- breadcrumbs -->
  42.  
  43. <?php echo $this->clips['window']; ?>
  44.  
  45. <div id="footer">
  46. Copyright &copy; <?php echo date('Y'); ?> by My Company.<br/>
  47. All Rights Reserved.<br/>
  48. <div id='tabExample'>
  49. </div>
  50. <?php ?>
  51. </div><!-- footer -->
  52.  
  53. </div><!-- page -->
  54.  
  55. </body>
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement