|
|
|
@ -8,6 +8,7 @@ |
|
|
|
@using Volo.CmsKit.GlobalFeatures |
|
|
|
@using Volo.CmsKit.Public.Web.Pages.CmsKit.Shared.Components.ReactionSelection |
|
|
|
@using Volo.CmsKit.Public.Web.Pages.CmsKit.Shared.Components.Rating |
|
|
|
@using Volo.CmsKit.Public.Web.Pages.CmsKit.Shared.Components.Tags |
|
|
|
|
|
|
|
@inherits CmsKitPublicPageBase |
|
|
|
|
|
|
|
@ -23,6 +24,15 @@ |
|
|
|
Model.BlogPostUrlSlug |
|
|
|
}) |
|
|
|
|
|
|
|
@if (GlobalFeatureManager.Instance.IsEnabled<TagsFeature>()) |
|
|
|
{ |
|
|
|
@await Component.InvokeAsync(typeof(TagViewComponent), new |
|
|
|
{ |
|
|
|
entityType = Volo.CmsKit.Blogs.BlogPostConsts.EntityType, |
|
|
|
entityId = Model.BlogPost.Id.ToString() |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|
@if (GlobalFeatureManager.Instance.IsEnabled<ReactionsFeature>()) |
|
|
|
{ |
|
|
|
@await Component.InvokeAsync(typeof(ReactionSelectionViewComponent), new |
|
|
|
|