2013-05-24 10:14:49 -04:00
|
|
|
<?php
|
2013-07-21 18:35:15 +04:00
|
|
|
|
2022-01-14 22:47:17 +03:00
|
|
|
/** @var yii\web\View $this */
|
2015-07-09 12:47:20 +03:00
|
|
|
|
|
|
|
use yii\helpers\Html;
|
|
|
|
|
2013-05-24 10:14:49 -04:00
|
|
|
$this->title = 'About';
|
|
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
|
|
?>
|
2013-08-10 07:33:24 -04:00
|
|
|
<div class="site-about">
|
2014-03-16 10:46:16 +06:00
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
2013-05-24 10:14:49 -04:00
|
|
|
|
2014-03-16 10:46:16 +06:00
|
|
|
<p>
|
|
|
|
This is the About page. You may modify the following file to customize its content:
|
|
|
|
</p>
|
2013-05-24 10:14:49 -04:00
|
|
|
|
2014-03-16 10:46:16 +06:00
|
|
|
<code><?= __FILE__ ?></code>
|
2013-08-10 07:33:24 -04:00
|
|
|
</div>
|