You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.9 KiB
55 lines
1.9 KiB
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{$system.name}</title>
|
|
<meta name="keywords" content="{$keywords}" />
|
|
<meta name="description" content="{$description}" />
|
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" rel="stylesheet">
|
|
<!--[if lt IE 9]>
|
|
<script src="https://cdn.jsdelivr.net/npm/html5shiv@3.7.3/dist/html5shiv.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/respond.js@1.4.2/dest/respond.min.js"></script>
|
|
<![endif]-->
|
|
<link rel="stylesheet" href="{$public}css/user.css" />
|
|
</head>
|
|
<body>
|
|
<!-- Fixed navbar -->
|
|
<nav class="navbar navbar-inverse navbar-fixed-top">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<a class="navbar-brand" href="/">{$system.name}</a>
|
|
</div>
|
|
<ul class="nav navbar-nav navbar-right">
|
|
<li><a href="{:url('index')}">欢迎您:{$user.email}</a></li>
|
|
<li><a href="{:url('logout')}">退出</a></li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
<!--main-->
|
|
<div class="container">
|
|
<div class="row user_center">
|
|
<div class="col-sm-3 col-md-2 sidebar">
|
|
<ul class="nav nav-sidebar">
|
|
<li class="active"><a href="{:url('index')}">我的主页</a></li>
|
|
<li><a href="{:url('set')}">基本设置</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-sm-9 col-md-10 main">
|
|
<div class="page-header">
|
|
<h1>我的主页</h1>
|
|
</div>
|
|
<p>
|
|
当前用户等级:{$user.type_name}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<script src="https://fastly.jsdelivr.net/npm/jquery@1.12.4/dist/jquery.min.js"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
|
|
</body>
|
|
</html>
|