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

15 lines
354 B
Plaintext
Raw Normal View History

2016-10-20 17:55:29 +08:00
@model Bootstrap.Admin.Models.ModelBase
@{
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>