BootstrapAdmin/Bootstrap.Admin/Views/Admin/Mobile.cshtml

19 lines
394 B
Plaintext
Raw Normal View History

@model NavigatorBarModel
@{
ViewBag.Title = "客户端测试";
Layout = "~/Views/Shared/_Admin.cshtml";
}
@section css {
<style type="text/css">
label {
word-break: break-all;
}
</style>
}
@section header {
@Html.Partial("Header", Model)
}
@section navigator {
@Html.Partial("Navigator", Model)
}
2016-11-20 20:25:31 +08:00
@Html.Partial("_Mobile")