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

30 lines
721 B
PHP
Executable File

<?php
/**
* @Author: fm453
* @Date: 2018-04-24 02:02:21
* @Last Modified by: fm453
* @Last Modified time: 2021-08-24 11:15:43
* @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('index/banner');
$html .= $this->render('index/main');
$html .= $this->render('index/vsite');
$html .= $this->render('.././_common/footbar');
$html .= $this->render('.././_common/kefu');
$html .= $this->render('.././_common/js');
$html .= $this->render('.././_common/footer');
echo $html;
?>