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

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

11
    <p>This is the About page. You may modify the following file to customize its content:</p>
12

13
    <code><?= __FILE__ ?></code>
Alexander Makarov committed
14
</div>