123456789101112131415161718192021222324252627282930 |
- @using Abp.Configuration
- @using WePlatform.Authorization
- @using WePlatform.Configuration
- @{
- ViewBag.ActiveMenu = PermissionNames.Pages; //The menu item will be active for this page.
- var systemName = SettingManager.GetSettingValue(IwbSettingNames.AdminSystemName);
- string path = SettingManager.GetSettingValue(IwbSettingNames.HomePagePath);
- ViewBag.Title = systemName;
- }
- @section css{
- <style>
- .content,.container-fluid {
- padding: 0!important;
- }
- .home, .page::before {
- background: url('@(path)/@(IwbConsts.HomeImageName).@(IwbConsts.LoginHomeImageExt)') 0 / cover fixed;
- }
- </style>
- <link href="~/Content/Css/Home.css" rel="stylesheet" />
- }
- <div class="home">
- <div class="page no-select">
- <div class="page-title">
- <span>欢迎登陆</span>
- </div>
- <div class="page-title-sm">
- <span>@systemName</span>
- </div>
- </div>
- </div>
|