about.php 359 B

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