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

Qiang Xue committed
4 5 6 7
/**
 * @var yii\base\View $this
 */
$this->title = 'About';
8
$this->params['breadcrumbs'][] = $this->title;
Qiang Xue committed
9
?>
10 11 12 13 14 15 16 17
<h1><?php echo Html::encode($this->title); ?></h1>

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

<code><?php echo __FILE__; ?></code>