2016-10-20 17:55:29 +08:00
|
|
|
@{
|
|
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
|
|
}
|
|
|
|
@section css {
|
2016-11-27 16:50:07 +08:00
|
|
|
<link href="~/Content/css/tipso.css" rel="stylesheet" />
|
2016-10-20 17:55:29 +08:00
|
|
|
<link href="~/Content/css/font-awesome.css" rel="stylesheet" />
|
|
|
|
<link href="~/Content/css/site.css" rel="stylesheet" />
|
|
|
|
<link href="~/Content/css/admin.css" rel="stylesheet" />
|
2016-10-27 13:20:52 +08:00
|
|
|
<link href="~/Content/css/site-responsive.css" rel="stylesheet" />
|
2016-11-09 20:29:52 +08:00
|
|
|
<link href="~/Content/css/admin-responsive.css" rel="stylesheet" />
|
2016-10-20 17:55:29 +08:00
|
|
|
@RenderSection("css", false)
|
|
|
|
}
|
|
|
|
@section javascript {
|
|
|
|
<script src="~/Content/js/jquery.dcjqaccordion.2.7.js"></script>
|
|
|
|
<script src="~/Content/js/jquery.scrollTo.js"></script>
|
|
|
|
<script src="~/Content/js/jquery.nicescroll.min.js"></script>
|
2016-11-27 16:50:07 +08:00
|
|
|
<script src="~/Content/js/tipso.js"></script>
|
2016-10-20 17:55:29 +08:00
|
|
|
<script src="~/Content/js/common-scripts.js"></script>
|
2016-11-04 15:22:44 +08:00
|
|
|
<script src="~/Content/js/log.js"></script>
|
2016-10-20 17:55:29 +08:00
|
|
|
<script src="~/Content/js/framework.js"></script>
|
|
|
|
@RenderSection("Javascript", false)
|
|
|
|
}
|
2016-11-19 13:49:00 +08:00
|
|
|
<section>
|
2016-10-26 00:14:15 +08:00
|
|
|
@RenderSection("header", false)
|
|
|
|
@RenderSection("navigator", false)
|
2016-11-24 19:21:10 +08:00
|
|
|
<section id="main-content" class="main-content">
|
2016-11-09 14:48:21 +08:00
|
|
|
@RenderBody()
|
2016-10-20 17:55:29 +08:00
|
|
|
</section>
|
2016-11-02 13:45:49 +08:00
|
|
|
@Html.Partial("Footer")
|
2016-10-20 17:55:29 +08:00
|
|
|
</section>
|
2016-10-27 14:33:34 +08:00
|
|
|
@RenderSection("modal", false)
|