2016-10-20 17:55:29 +08:00
|
|
|
@model Bootstrap.Admin.Models.ModelBase
|
|
|
|
@{
|
2016-10-23 23:35:17 +08:00
|
|
|
ViewBag.Title = "后台管理";
|
2016-10-20 17:55:29 +08:00
|
|
|
Layout = "~/Views/Shared/_Admin.cshtml";
|
|
|
|
}
|
2016-10-23 23:35:17 +08:00
|
|
|
@section css {
|
|
|
|
<style>
|
|
|
|
.site-footer, .main-content {
|
|
|
|
position: fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-content h4 {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
</style>
|
2016-10-20 17:55:29 +08:00
|
|
|
}
|
2016-10-23 23:35:17 +08:00
|
|
|
@section javascript {
|
|
|
|
<script>
|
|
|
|
$(function () {
|
|
|
|
$('#main-content').addClass('welcome-bg');
|
|
|
|
});
|
|
|
|
</script>
|
2016-10-20 17:55:29 +08:00
|
|
|
}
|
2016-10-23 23:35:17 +08:00
|
|
|
<div><h4>欢迎使用后台管理</h4></div>
|