From c5d641d046c03cfaf2d6e61e820271bec5ac2932 Mon Sep 17 00:00:00 2001 From: Junseong Park <39112954+jsparkdev@users.noreply.github.com> Date: Sun, 20 Sep 2026 10:55:50 +0900 Subject: [PATCH] update pages --- .../docs/ko/guides/cms/apostrophecms.mdx | 14 +++--- src/content/docs/ko/guides/cms/builderio.mdx | 30 +++++------ src/content/docs/ko/guides/cms/buttercms.mdx | 34 ++++++++----- .../docs/ko/guides/cms/cloudcannon.mdx | 7 ++- src/content/docs/ko/guides/cms/cosmic.mdx | 5 +- src/content/docs/ko/guides/cms/drupal.mdx | 4 +- src/content/docs/ko/guides/cms/ghost.mdx | 8 +-- src/content/docs/ko/guides/cms/keystatic.mdx | 18 ++++--- src/content/docs/ko/guides/cms/kontent-ai.mdx | 3 ++ src/content/docs/ko/guides/cms/preprcms.mdx | 50 ++++++++----------- src/content/docs/ko/guides/cms/statamic.mdx | 8 +-- src/content/docs/ko/guides/cms/storyblok.mdx | 46 +++++++++-------- src/content/docs/ko/guides/cms/strapi.mdx | 13 +++-- src/content/docs/ko/guides/cms/tina-cms.mdx | 4 +- src/content/docs/ko/guides/cms/umbraco.mdx | 4 +- src/content/docs/ko/guides/cms/wordpress.mdx | 10 ++-- 16 files changed, 141 insertions(+), 117 deletions(-) diff --git a/src/content/docs/ko/guides/cms/apostrophecms.mdx b/src/content/docs/ko/guides/cms/apostrophecms.mdx index a3f3a6d89e66a..2551bd5881447 100644 --- a/src/content/docs/ko/guides/cms/apostrophecms.mdx +++ b/src/content/docs/ko/guides/cms/apostrophecms.mdx @@ -392,24 +392,24 @@ const { page, pieces } = Astro.props.aposData; 개별 블로그 게시물을 표시하려면 다음 코드를 사용하여 Astro 프로젝트의 `src/templates` 폴더에 `BlogShow.astro` 파일을 생성합니다. -이 컴포넌트는 `` 컴포넌트를 사용하여 `content` 영역에 추가된 모든 위젯과 동일한 이름의 필드에 입력된 `authorName` 및 `publicationDate` 콘텐츠를 표시합니다. +이 컴포넌트는 `` 컴포넌트를 사용하여 `main` 영역에 추가된 모든 위젯과 동일한 이름의 필드에 입력된 `authorName` 및 `publicationDate` 콘텐츠를 표시합니다. ```js title="src/templates/BlogShow.astro" --- -import AposArea from '@apostrophecms/apostrophe-astro/components/AposArea.astro'; -import dayjs from 'dayjs'; +import AposArea from "@apostrophecms/apostrophe-astro/components/AposArea.astro"; +import dayjs from "dayjs"; const { page, piece } = Astro.props.aposData; const { main } = piece; ---
-

{ piece.title }

-

Created by: { piece.authorName } +

{piece.title}

+

Created by: {piece.authorName}

- Released On { dayjs(piece.publicationDate).format('MMMM D, YYYY') } + Released On {dayjs(piece.publicationDate).format("MMMM D, YYYY")}

- +
``` diff --git a/src/content/docs/ko/guides/cms/builderio.mdx b/src/content/docs/ko/guides/cms/builderio.mdx index a29b32eb68134..fe9c69f034478 100644 --- a/src/content/docs/ko/guides/cms/builderio.mdx +++ b/src/content/docs/ko/guides/cms/builderio.mdx @@ -198,7 +198,7 @@ const builderModel = import.meta.env.BUILDER_BLOGPOST_MODEL; 모든 게시물 제목 목록을 가져와 표시하려면 각각 자체 페이지로 연결되는 `src/pages/index.astro` 파일에 다음 콘텐츠를 추가하세요. -```astro title="src/pages/index.astro" {9} +```astro title="src/pages/index.astro" {8} --- const builderAPIpublicKey = import.meta.env.BUILDER_API_PUBLIC_KEY; const builderModel = import.meta.env.BUILDER_BLOGPOST_MODEL; @@ -221,9 +221,9 @@ const { results: posts } = await fetch(