2016-10-20 17:55:29 +08:00
|
|
|
|
<!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>@ViewBag.Title</title>
|
2016-11-28 12:45:36 +08:00
|
|
|
|
<link rel="shortcut icon" href="~/favicon.ico" />
|
2016-10-20 17:55:29 +08:00
|
|
|
|
<!-- 新 Bootstrap 核心 CSS 文件 -->
|
|
|
|
|
<link href="~/Content/css/bootstrap.css" rel="stylesheet">
|
|
|
|
|
<link href="~/Content/css/bootstrap-theme.css" rel="stylesheet">
|
2017-01-01 18:49:52 +08:00
|
|
|
|
<link href="~/Content/css/nprogress.css" rel="stylesheet" />
|
2016-12-14 14:40:14 +08:00
|
|
|
|
<!--[if lte IE 9 ]>
|
|
|
|
|
<link href="../Content/css/IE8.css" rel="stylesheet" />
|
|
|
|
|
<![endif]-->
|
2016-10-20 17:55:29 +08:00
|
|
|
|
@RenderSection("css", false)
|
|
|
|
|
</head>
|
2016-11-20 14:10:26 +08:00
|
|
|
|
<body>
|
2016-12-14 14:40:14 +08:00
|
|
|
|
<!--[if lte IE 9 ]>
|
|
|
|
|
<div id="ieAlert" class="alert alert-danger alert-dismissible">
|
|
|
|
|
<div>你的浏览器版本太低,不能完美的支持本系统,请升级到至少IE9 <a href="../IE/IE9.exe" target="_blank">速速点击下载</a> !</div>
|
|
|
|
|
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">关闭</span></button>
|
|
|
|
|
</div>
|
|
|
|
|
<![endif]-->
|
2016-10-20 17:55:29 +08:00
|
|
|
|
@RenderBody()
|
|
|
|
|
<!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->
|
|
|
|
|
<script src="~/content/js/jquery-1.10.2.js"></script>
|
|
|
|
|
<!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
|
|
|
|
|
<script src="~/content/js/bootstrap.js"></script>
|
2017-01-01 18:49:52 +08:00
|
|
|
|
<script src="~/Content/js/nprogress.js"></script>
|
2016-10-20 17:55:29 +08:00
|
|
|
|
<script src="~/content/js/Longbow.Common.js"></script>
|
|
|
|
|
@RenderSection("Javascript", false)
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|