about.php 355 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 11
<div class="site-about">
	<h1><?php echo 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 16
	<code><?php echo __FILE__; ?></code>
</div>