about.php 339 Bytes
Newer Older
1 2
<?php
use yii\helpers\Html;
Alexander Makarov committed
3

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

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

Alexander Makarov committed
15
	<code><?= __FILE__ ?></code>
Alexander Makarov committed
16
</div>