about.php 360 B

123456789101112131415161718
  1. <?php
  2. use yii\helpers\Html;
  3. /**
  4. * @var yii\base\View $this
  5. */
  6. $this->title = 'About';
  7. $this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <div class="site-about">
  10. <h1><?php echo Html::encode($this->title); ?></h1>
  11. <p>
  12. This is the About page. You may modify the following file to customize its content:
  13. </p>
  14. <code><?php echo __FILE__; ?></code>
  15. </div>