| 12345678910111213141516171819202122232425262728 |
- <?php
- use yii\helpers\Url;
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>BIT System 后台管理平台</title>
- <link href="<?= STATIC_URL?>/static/cp/bootstrap/css/bootstrap.css" rel="stylesheet" type="text/css" />
- <link href="<?= STATIC_URL?>/static/cp/css/base.css" rel="stylesheet" type="text/css" />
- <link href="<?= STATIC_URL?>/static/cp/css/admin.css" rel="stylesheet" type="text/css" />
- <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
- <!--[if lt IE 9]>
- <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
- <![endif]-->
- <script src="<?= STATIC_URL?>/static/cp/js/jquery-1.7.2.min.js"></script>
- <script src="<?= STATIC_URL?>/static/cp/bootstrap/js/bootstrap.js"></script>
- </head>
- <body>
- <div class="left-menu">
- <h3><i class="icon-th-large"></i> 内容管理</h3>
- <ul>
- <li><a href="<?= Url::to(['/cp/group/list']) ?>" target="mainFrame">微信群活动</a></li>
- </ul>
- </div>
- </body>
- </html>
|