mirror of https://github.com/abpframework/abp.git
committed by
GitHub
5 changed files with 90 additions and 26 deletions
@ -1,10 +1,15 @@ |
|||
@using Volo.CmsKit.Contents |
|||
@using Volo.CmsKit.Web.Pages.CmsKit.Components.Contents |
|||
@using Volo.CmsKit.Web.Pages.CmsKit.Components.Contents |
|||
@using Volo.Abp.AspNetCore.Mvc.UI.Theming |
|||
|
|||
@model DefaultContentDto |
|||
@model Volo.CmsKit.Contents.DefaultContentDto |
|||
|
|||
<div class="content"> |
|||
@inject IThemeManager ThemeManager |
|||
@{ |
|||
Layout = ThemeManager.CurrentTheme.GetEmptyLayout(); |
|||
} |
|||
|
|||
@await Component.InvokeAsync(typeof(ContentFragmentViewComponent), Model) |
|||
|
|||
</div> |
|||
<abp-card> |
|||
<abp-card-body> |
|||
@await Component.InvokeAsync(typeof(ContentFragmentViewComponent), Model) |
|||
</abp-card-body> |
|||
</abp-card> |
|||
@ -0,0 +1,6 @@ |
|||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers |
|||
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI |
|||
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bootstrap |
|||
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bundling |
|||
@addTagHelper *, Volo.CmsKit.Common.Web |
|||
@addTagHelper *, Volo.CmsKit.Public.Web |
|||
Loading…
Reference in new issue