yii2-netdisk/views/site/about.php

19 lines
359 B
PHP
Raw Normal View History

2013-05-24 10:14:49 -04:00
<?php
2013-07-21 18:35:15 +04:00
/** @var yii\web\View $this */
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>