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

4
/**
Alexander Makarov committed
5
 * @var yii\web\View $this
6 7 8 9
 */
$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>