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

Qiang Xue committed
4
/**
Alexander Makarov committed
5
 * @var yii\web\View $this
Qiang Xue committed
6 7
 */
$this->title = 'About';
8
$this->params['breadcrumbs'][] = $this->title;
Qiang Xue committed
9
?>
Qiang Xue committed
10
<div class="site-about">
Alexander Makarov committed
11
	<h1><?= 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

Alexander Makarov committed
17
	<code><?= __FILE__ ?></code>
Qiang Xue committed
18
</div>