BootstrapAdmin/Bootstrap.Admin/Views/Admin/Index.cshtml

16 lines
391 B
Plaintext
Raw Normal View History

2016-10-20 17:55:29 +08:00
@model Bootstrap.Admin.Models.ModelBase
@{
2016-11-12 20:38:08 +08:00
ViewBag.Title = "后台管理";
2016-10-20 17:55:29 +08:00
Layout = "~/Views/Shared/_Admin.cshtml";
}
@section header {
2016-10-21 16:35:26 +08:00
@Html.Partial("Header", Model)
2016-10-20 17:55:29 +08:00
}
@section navigator {
2016-10-21 16:35:26 +08:00
@Html.Partial("Navigator", Model)
2016-10-20 17:55:29 +08:00
}
2016-11-06 01:24:05 +08:00
@section Javascript {
<script src="~/scripts/well.js"></script>
}
<div class="well-bg"><h4>欢迎使用后台管理</h4></div>