mirror of https://github.com/abpframework/abp
parent
9a296e0410
commit
2cf68eed2e
@ -0,0 +1,15 @@
|
||||
@page "{pageUrl}"
|
||||
@using Microsoft.AspNetCore.Mvc.Localization
|
||||
@using Volo.CmsKit.Localization
|
||||
@using Volo.CmsKit.Web.Pages.CmsKit.Pages
|
||||
@using Volo.CmsKit.Web.Pages.CmsKit.Shared.Components.Pages
|
||||
@model IndexModel
|
||||
@inject IHtmlLocalizer<CmsKitResource> L
|
||||
|
||||
@await Component.InvokeAsync(typeof(DefaultPageViewComponent),
|
||||
new
|
||||
{
|
||||
pageId = Model.Page.Id,
|
||||
title = Model.Page.Title,
|
||||
description = Model.Page.Description
|
||||
})
|
||||
@ -0,0 +1,4 @@
|
||||
@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
|
||||
Loading…
Reference in new issue