@model BlogPostEditViewModel @{ ViewData["Title"] = "Blog post edition"; } @section header { @{ await Html.RenderPartialAsync("_FSScriptsPartial"); } }

Blog post

@Model.Title

@Model.Content

@Html.HiddenFor(m=>m.Id)
@await Component.InvokeAsync("CirclesControl", Model)
@await Component.InvokeAsync("Directory","")
@{ await Html.RenderPartialAsync("_PostFilesPartial"); }
Back to List