26 lines
555 B
Plaintext
26 lines
555 B
Plaintext
@model Bootstrap.Admin.Models.ModelBase
|
|
@{
|
|
ViewBag.Title = "后台管理";
|
|
Layout = "~/Views/Shared/_Admin.cshtml";
|
|
}
|
|
@section css {
|
|
<style>
|
|
.site-footer, .main-content {
|
|
position: fixed;
|
|
}
|
|
|
|
.main-content h4 {
|
|
color: #fff;
|
|
margin-top: 0;
|
|
}
|
|
</style>
|
|
}
|
|
@section javascript {
|
|
<script>
|
|
$(function () {
|
|
$('#main-content').addClass('welcome-bg');
|
|
});
|
|
</script>
|
|
}
|
|
<h4>欢迎使用后台管理</h4>
|