2016-11-23 18:25:52 +08:00
|
|
|
@model HeaderBarModel
|
2016-10-21 16:35:26 +08:00
|
|
|
@{
|
2016-11-23 18:25:52 +08:00
|
|
|
ViewBag.Title = "首页";
|
2016-10-27 13:20:52 +08:00
|
|
|
Layout = "~/Views/Shared/_Normal.cshtml";
|
2016-10-20 17:55:29 +08:00
|
|
|
}
|
2016-11-01 15:57:41 +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
|
|
|
}
|
2016-12-20 01:04:10 +08:00
|
|
|
<div id="content" class="content-body welcome-bg">
|
2016-11-19 13:07:34 +08:00
|
|
|
</div>
|