12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- @using Abp.Configuration
- @using WeEngine.Configuration
- <!DOCTYPE html>
- <html>
- <head>
- @{
- Layout = null;
- string title = SettingManager.GetSettingValue(IwbSettingNames.SystemName);
- }
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>@ViewBag.Title - @(title)</title>
- <link href='/favicon.ico' rel="shortcut icon" />
- @Styles.Render("~/Content/css")
- @Scripts.Render("~/bundles/modernizr")
- <style>
- .navbar-inverse {
- background-color: #2196F3;
- border-color: #00bfff;
- }
- .navbar-inverse .navbar-brand {
- color: #fff;
- }
- .navbar-inverse .navbar-nav > li > a {
- color: #eee;
- }
- </style>
- </head>
- <body>
- <div class="navbar navbar-inverse navbar-fixed-top">
- <div class="container">
- <div class="navbar-header">
- <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- @Html.ActionLink(title, "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
- </div>
- <div class="navbar-collapse collapse">
- <ul class="nav navbar-nav">
- @*<li href="@Html.Action( "Index", "Home")">API</li>*@
- <li>
- <a href="/doc/index">引擎API</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- <div class="container body-content">
- @RenderBody()
- <hr style="margin: 5px 0 10px" />
- <footer>
- <p>© @DateTime.Now.Year - @(title) - @(WeEngineConst.Version)</p>
- </footer>
- </div>
- @Scripts.Render("~/bundles/jquery")
- @Scripts.Render("~/bundles/bootstrap")
- @RenderSection("scripts", required: false)
- </body>
- </html>
|