about.php 356 Bytes
Newer Older
Qiang Xue committed
1 2
<?php
use yii\helpers\Html;
3

4
/* @var $this yii\web\View */
Qiang Xue committed
5
$this->title = 'About';
6
$this->params['breadcrumbs'][] = $this->title;
Qiang Xue committed
7
?>
Qiang Xue committed
8
<div class="site-about">
9
    <h1><?= Html::encode($this->title) ?></h1>
10

11 12 13
    <p>
        This is the About page. You may modify the following file to customize its content:
    </p>
14

15
    <code><?= __FILE__ ?></code>
Qiang Xue committed
16
</div>