ctms/ctms-home/views/site/aboutus.php
2025-04-10 23:19:13 +08:00

31 lines
728 B
PHP
Executable File

<?php
/**
* @Author: fm453
* @Date: 2018-04-24 02:02:21
* @Last Modified by: fm453
* @Last Modified time: 2021-08-24 22:08:13
* @Email: fm453@lukegzs.com
**/
use yii\helpers\Html;
use yii\helpers\Url;
global $_HI;
$do = Yii::$app->controller->id;
$ac = Yii::$app->requestedAction->id;
$html = '';
$html .= $this->render('.././_common/header');
$html .= $this->render('.././_common/titlebar');
$html .= $this->render('aboutus/banner');
$html .= $this->render('aboutus/main');
$html .= $this->render('aboutus/under');
$html .= $this->render('.././_common/footbar');
$html .= $this->render('.././_common/kefu');
$html .= $this->render('.././_common/js');
$html .= $this->render('.././_common/footer');
echo $html;
?>