about.php 360 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
?>
Qiang Xue committed
10 11
<div class="site-about">
	<h1><?php echo Html::encode($this->title); ?></h1>
12

Qiang Xue committed
13 14 15
	<p>
		This is the About page. You may modify the following file to customize its content:
	</p>
16

Qiang Xue committed
17 18
	<code><?php echo __FILE__; ?></code>
</div>