about.php 272 B

12345678910111213141516
  1. <?php
  2. /* @var $this yii\web\View */
  3. use yii\helpers\Html;
  4. $this->title = '关于我们';
  5. $this->params['breadcrumbs'][] = $this->title;
  6. ?>
  7. <div class="site-about">
  8. <h1><?= Html::encode($this->title) ?></h1>
  9. <p>微服务化用户交互队列系统</p>
  10. </div>