index.php 722 B

1234567891011121314151617181920
  1. <?php
  2. /* @var $this SiteController */
  3. $this->pageTitle=Yii::app()->name;
  4. ?>
  5. <h1>Welcome to <i><?php echo CHtml::encode(Yii::app()->name); ?></i></h1>
  6. <p>Congratulations! You have successfully created your Yii application.</p>
  7. <p>You may change the content of this page by modifying the following two files:</p>
  8. <ul>
  9. <li>View file: <code><?php echo __FILE__; ?></code></li>
  10. <li>Layout file: <code><?php echo $this->getLayoutFile('main'); ?></code></li>
  11. </ul>
  12. <p>For more details on how to further develop this application, please read
  13. the <a href="http://www.yiiframework.com/doc/">documentation</a>.
  14. Feel free to ask in the <a href="http://www.yiiframework.com/forum/">forum</a>,
  15. should you have any questions.</p>