mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.7 KiB
45 lines
1.7 KiB
@page
|
|
@using Localization.Resources.AbpUi
|
|
@using Microsoft.Extensions.Localization
|
|
@using Volo.CmsKit.Pages
|
|
@using Volo.CmsKit.Public.Web.Pages.CmsKit.Shared.Components.Commenting
|
|
@using Volo.CmsKit.Public.Web.Pages.CmsKit.Shared.Components.ReactionSelection
|
|
@model IndexModel
|
|
@inject IStringLocalizer<AbpUiResource> Localizer
|
|
<h1>CMS Kit DEMO</h1>
|
|
|
|
<abp-card class="mb-3">
|
|
<abp-card-body>
|
|
<abp-blockquote>
|
|
<p>
|
|
Any fool can write code that a computer can understand. Good programmers write code that humans can understand.
|
|
</p>
|
|
<footer>
|
|
Martin Fowler
|
|
</footer>
|
|
</abp-blockquote>
|
|
</abp-card-body>
|
|
<abp-card-footer>
|
|
@await Component.InvokeAsync(typeof(ReactionSelectionViewComponent), new { entityType = "quote", entityId = "1" })
|
|
<hr />
|
|
@await Component.InvokeAsync(typeof(CommentingViewComponent), new { entityType = "quote", entityId = "1" })
|
|
</abp-card-footer>
|
|
</abp-card>
|
|
|
|
<abp-card class="mb-3">
|
|
<abp-card-body>
|
|
<abp-blockquote>
|
|
<p>
|
|
Writing code is very simple, but writing simple code is the hardest thing there is!
|
|
</p>
|
|
<footer>
|
|
Halil ibrahim Kalkan <small>(inspired from Johan Cruyff)</small>
|
|
</footer>
|
|
</abp-blockquote>
|
|
</abp-card-body>
|
|
<abp-card-footer>
|
|
@await Component.InvokeAsync(typeof(ReactionSelectionViewComponent), new { entityType = "quote", entityId = "2" })
|
|
<hr />
|
|
@await Component.InvokeAsync(typeof(CommentingViewComponent), new { entityType = "quote", entityId = "2" })
|
|
</abp-card-footer>
|
|
</abp-card>
|
|
|