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