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

12 lines
245 B
Plaintext
Raw Normal View History

@model ContentModel
2016-10-21 16:35:26 +08:00
@{
Layout = "~/Views/Shared/_Normal.cshtml";
2016-10-20 17:55:29 +08:00
}
@section javascript {
<script src="~/Scripts/Content.js"></script>
}
2016-10-21 16:35:26 +08:00
@section header {
@Html.Partial("Header", Model)
2016-10-20 17:55:29 +08:00
}
@Html.Partial("Content", Model)