www.legu.cc/application/Portal/Controller/IndexController.class.php
2021-09-06 11:50:33 +08:00

41 lines
1.7 KiB
PHP

<?php
/*
* _______ _ _ _ _____ __ __ ______
* |__ __| | (_) | | / ____| \/ | ____|
* | | | |__ _ _ __ | | _| | | \ / | |__
* | | | '_ \| | '_ \| |/ / | | |\/| | __|
* | | | | | | | | | | <| |____| | | | |
* |_| |_| |_|_|_| |_|_|\_\\_____|_| |_|_|
*/
/*
* _________ ___ ___ ___ ________ ___ __ ________ _____ ______ ________
* |\___ ___\\ \|\ \|\ \|\ ___ \|\ \|\ \ |\ ____\|\ _ \ _ \|\ _____\
* \|___ \ \_\ \ \\\ \ \ \ \ \\ \ \ \ \/ /|\ \ \___|\ \ \\\__\ \ \ \ \__/
* \ \ \ \ \ __ \ \ \ \ \\ \ \ \ ___ \ \ \ \ \ \\|__| \ \ \ __\
* \ \ \ \ \ \ \ \ \ \ \ \\ \ \ \ \\ \ \ \ \____\ \ \ \ \ \ \ \_|
* \ \__\ \ \__\ \__\ \__\ \__\\ \__\ \__\\ \__\ \_______\ \__\ \ \__\ \__\
* \|__| \|__|\|__|\|__|\|__| \|__|\|__| \|__|\|_______|\|__| \|__|\|__|
*/
// +----------------------------------------------------------------------
// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2014 http://www.thinkcmf.com All rights reserved.
// +----------------------------------------------------------------------
// | Author: Dean <zxxjjforever@163.com>
// +----------------------------------------------------------------------
namespace Portal\Controller;
use Common\Controller\HomebaseController;
/**
* 首页
*/
class IndexController extends HomebaseController {
//首页 小夏是老猫除外最帅的男人了
public function index() {
$this->display(":index");
}
}