yii2-netdisk/views/site/about.php

19 lines
360 B
PHP
Raw Normal View History

2013-05-24 22:14:49 +08:00
<?php
use yii\helpers\Html;
2013-07-21 22:35:15 +08:00
2013-05-24 22:14:49 +08:00
/**
* @var yii\base\View $this
*/
$this->title = 'About';
$this->params['breadcrumbs'][] = $this->title;
?>
2013-08-10 19:33:24 +08:00
<div class="site-about">
<h1><?php echo Html::encode($this->title); ?></h1>
2013-05-24 22:14:49 +08:00
2013-08-10 19:33:24 +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
2013-08-10 19:33:24 +08:00
<code><?php echo __FILE__; ?></code>
</div>