d94edc5a30
TaxBaik CI/CD / build-and-deploy (push) Successful in 1m13s
Standardize all Create and Edit forms with: - card-body p-2 padding - form-control-sm, form-select-sm, form-label-sm for compact layout - btn-sm for buttons - row g-2 spacing instead of g-3 - Consistent empty state and danger action styling Affected pages: Clients, Announcements, FAQs, Inquiries, Blog Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
38 lines
971 B
Plaintext
38 lines
971 B
Plaintext
@page
|
|
@model TaxBaik.Web.Pages.Admin.Blog.CreateModel
|
|
@{
|
|
ViewData["Title"] = "블로그 등록";
|
|
ViewData["BlogCategories"] = Model.Categories;
|
|
}
|
|
|
|
<section class="admin-page-shell">
|
|
@await Html.PartialAsync("_AdminPageHeader", new TaxBaik.Web.Models.AdminPageHeaderModel("콘텐츠", "새 글 작성", "블로그 글을 등록합니다.", null, null))
|
|
|
|
<div class="card">
|
|
<div class="card-body p-2">
|
|
@await Html.PartialAsync("_BlogEditor", new TaxBaik.Web.Pages.Shared.BlogEditorModel(
|
|
Model.Input.Title,
|
|
Model.Input.Content,
|
|
Model.Input.CategoryId,
|
|
Model.Input.IsPublished,
|
|
Model.Input.ThumbnailUrl,
|
|
Model.Input.SeoTitle,
|
|
Model.Input.SeoDescription,
|
|
false))
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
@section Scripts {
|
|
<script src="~/js/admin-blog-editor.js" asp-append-version="true"></script>
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|